Skip to content

Commit

Permalink
feat: minor tweaks plus added eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
Simon Erslev Milfred committed Jun 28, 2023
1 parent 514182d commit 1ac059b
Show file tree
Hide file tree
Showing 13 changed files with 2,429 additions and 1,238 deletions.
9 changes: 7 additions & 2 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -1,12 +1,17 @@
# editorconfig.org
root = true

[*]
indent_size = 2
indent_style = space
indent_style = tab
indent_size = 4
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[*.md]
trim_trailing_whitespace = false

[*.yml]
indent_style = space
indent_size = 2
4 changes: 4 additions & 0 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
module.exports = {
root: true,
extends: ['./node_modules/@limbo-works/nuxt-core/.eslintrc.cjs'],
};
58 changes: 29 additions & 29 deletions .github/workflows/release-package.yml
Original file line number Diff line number Diff line change
@@ -1,35 +1,35 @@
name: Release Package

on:
release:
types: [created]
release:
types: [created]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
- run: npm install
- run: npm ci
- run: npm test
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
- run: npm install
- run: npm ci
- run: npm test

publish-gpr:
needs: build
runs-on: ubuntu-latest
permissions:
packages: write
contents: read
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
registry-url: https://npm.pkg.github.com/
- run: npm install
- run: npm ci
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}
publish-gpr:
needs: build
runs-on: ubuntu-latest
permissions:
packages: write
contents: read
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
registry-url: https://npm.pkg.github.com/
- run: npm install
- run: npm ci
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}
13 changes: 5 additions & 8 deletions .playground/app.vue
Original file line number Diff line number Diff line change
@@ -1,11 +1,8 @@
<template>
<div>
<ThemeConfiguration>
Yes it is loaded
</ThemeConfiguration>
<div>Test?</div>
</div>
<div>
<ThemeConfiguration> Yes it is loaded </ThemeConfiguration>
<div>Test?</div>
</div>
</template>

<script>
</script>
<script></script>
Loading

0 comments on commit 1ac059b

Please sign in to comment.