Skip to content

Commit

Permalink
Merge pull request #912 from ThornWalli/feature/update-nuxt-3
Browse files Browse the repository at this point in the history
fix(update): update nuxt 3
  • Loading branch information
ThornWalli authored Jul 30, 2023
2 parents b1549da + 63d967d commit c0f1b00
Show file tree
Hide file tree
Showing 155 changed files with 20,178 additions and 37,121 deletions.
4 changes: 1 addition & 3 deletions .browserslistrc
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
> 1% in DE
Firefox ESR
IE 11
>= 0.4% and last 4 versions, iOS >= 15, Firefox ESR, not dead, not and_qq >= 0, not and_uc >= 0, not samsung >=0, not kaios >=0, not op_mini all
16 changes: 16 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# NODE_TLS_REJECT_UNAUTHORIZED=0

SERVER_SSL_CA_PATH=
SERVER_SSL_KEY_PATH=
SERVER_SSL_CRT_PATH=

# firebase

FIREBASE_TOKEN= # FIREBASE DEPLOY TOKEN
FIREBASE_API_KEY= # FIREBASE API KEY
FIREBASE_URL= # FIREBASE DATABASE URL

TEST_DATABASE_USER_EMAIL= #FIREBASE AUTH USER
TEST_DATABASE_USER_PASSWORD= #FIREBASE AUTH USER


5 changes: 0 additions & 5 deletions .eslintrc.js

This file was deleted.

4 changes: 0 additions & 4 deletions .eslintrc → .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,6 @@
"maxEOF": 1
}
],
"vue/name-property-casing": [
"error",
"PascalCase"
],
"vue/component-name-in-template-casing": [
"error",
"kebab-case",
Expand Down
4 changes: 2 additions & 2 deletions .firebaserc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"projects": {
"default": "web-workbench"
"default": "lammpee-web-workbench"
}
}
}
9 changes: 4 additions & 5 deletions .github/workflows/beta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
node: [16]
node: [19]

steps:
- uses: actions/setup-node@v3
Expand Down Expand Up @@ -47,7 +47,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
node: [16]
node: [19]

steps:
- uses: actions/setup-node@v3
Expand Down Expand Up @@ -75,9 +75,8 @@ jobs:
run: |
npm run generate
env:
BASE_PATH: /web-workbench/
BASE_URL: /web-workbench/
WEBSITE_HOST: https://thornwalli.github.io/web-workbench/
DIST_PATH: dist
FIREBASE_API_KEY: ${{ secrets.FIREBASE_API_KEY }}
FIREBASE_URL: ${{ secrets.FIREBASE_URL }}

Expand All @@ -94,7 +93,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
node: [16]
node: [19]
steps:
- name: Download Artifact
uses: actions/download-artifact@master
Expand Down
7 changes: 3 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
node: [16]
node: [19]

steps:
- uses: actions/setup-node@v3
Expand Down Expand Up @@ -47,7 +47,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
node: [16]
node: [19]

steps:
- uses: actions/setup-node@v3
Expand Down Expand Up @@ -78,7 +78,6 @@ jobs:
cp .firebaserc dist/.firebaserc
env:
WEBSITE_HOST: https://lammpee.de
DIST_PATH: dist
FIREBASE_API_KEY: ${{ secrets.FIREBASE_API_KEY }}
FIREBASE_URL: ${{ secrets.FIREBASE_URL }}

Expand All @@ -95,7 +94,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
node: [16]
node: [19]
steps:
- name: Download Artifact
uses: actions/download-artifact@master
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
node: [16]
node: [19]

steps:
- uses: actions/setup-node@v3
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ logs
# Files
.DS_Store
.scannerwork

.output
sw.*
env/cert/*
!env/cert/README.md
Expand Down
1 change: 0 additions & 1 deletion .npmignore

This file was deleted.

101 changes: 0 additions & 101 deletions .npmrc

This file was deleted.

2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
16.15.1
19.5.0
9 changes: 9 additions & 0 deletions .prettierrc.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
export default {
"arrowParens": "avoid",
"bracketSameLine": true,
"trailingComma": "none",
"singleQuote": true,
"semi": true,
"printWidth": 80
};

25 changes: 23 additions & 2 deletions .stylelintrc
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,27 @@
],
"selector-class-pattern": null,
"custom-property-pattern": null,
"max-line-length": null
"max-line-length": null,
"function-no-unknown": [
true,
{
"ignoreFunctions": [
"em",
"vw",
"number",
"deep",
"global"
]
}
],
"selector-pseudo-class-no-unknown": [
true,
{
"ignorePseudoClasses": [
"global",
"deep"
]
}
]
}
}
}
Loading

0 comments on commit c0f1b00

Please sign in to comment.