Skip to content

Commit

Permalink
Merge pull request #1121 from ThornWalli/feature/disk-moon-city
Browse files Browse the repository at this point in the history
added moon-city
  • Loading branch information
ThornWalli authored Nov 11, 2024
2 parents 6e2c5e8 + 2981748 commit 5a5a3bb
Show file tree
Hide file tree
Showing 582 changed files with 20,768 additions and 102,792 deletions.
2 changes: 1 addition & 1 deletion .firebaserc
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
"projects": {
"default": "lammpee-web-workbench"
}
}
}
3 changes: 3 additions & 0 deletions .github/workflows/beta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,11 +65,14 @@ jobs:
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
env:
HUSKY: 0

- name: Versioning
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
HUSKY: 0
run: |
npx -p semantic-release -p @semantic-release/git -p @semantic-release/changelog -p @semantic-release/exec -p @semantic-release/github semantic-release --debug=true
Expand Down
26 changes: 15 additions & 11 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,19 +65,24 @@ jobs:
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
env:
HUSKY: 0

- name: Versioning
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
HUSKY: 0
run: |
npx -p semantic-release -p @semantic-release/git -p @semantic-release/changelog -p @semantic-release/exec -p @semantic-release/github semantic-release --debug=true
- name: Build
run: |
pnpm run generate --workspace=@web-workbench/app
cp firebase.json ./packages/app/.output/public/firebase.json
cp .firebaserc ./packages/app/.output/public/.firebaserc
pnpm run --filter=app generate
mkdir artifact
cp -r ./packages/app/.output/public ./artifact/public
cp ./firebase.json ./artifact/firebase.json
cp ./.firebaserc ./artifact/.firebaserc
env:
WEBSITE_HOST: https://lammpee.de
FIREBASE_API_KEY: ${{ secrets.FIREBASE_API_KEY }}
Expand All @@ -87,7 +92,7 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: artifact
path: ./packages/app/.output/public
path: ./artifact

deploy-firebase:
name: Deploy (Firebase)
Expand All @@ -102,11 +107,10 @@ jobs:
uses: actions/download-artifact@v4
with:
name: artifact
path: public
- name: Deploy to Firebase
uses: docker://w9jds/firebase-action:master
path: ./
- uses: FirebaseExtended/action-hosting-deploy@v0
with:
args: deploy --only hosting
env:
PROJECT_PATH: public
FIREBASE_TOKEN: ${{ secrets.FIREBASE_TOKEN }}
repoToken: ${{ secrets.GITHUB_TOKEN }}
firebaseServiceAccount: ${{ secrets.FIREBASE_SERVICE_ACCOUNT_LAMMPEE_WEB_WORKBENCH }}
channelId: live
projectId: ${{ vars.FIREBASE_PROJECT_ID }}
4 changes: 2 additions & 2 deletions .lintstagedrc
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"*.(js|vue|json)": [
"eslint --fix ./",
"eslint ./",
"git add"
],
"*.(vue|css)": [
"stylelint --fix",
"stylelint",
"git add"
]
}
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
20.17.0
22.11.0
29 changes: 29 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,34 @@
# Project Changelog

## [1.3.36](https://github.com/ThornWalli/web-workbench/compare/v1.3.35...v1.3.36) (2024-09-26)


### Bug Fixes

* **update:** updated symbols and content ([42fe3dc](https://github.com/ThornWalli/web-workbench/commit/42fe3dc40ca902a99779502c3bea5e7e8a559b6c))

## [1.3.35](https://github.com/ThornWalli/web-workbench/compare/v1.3.34...v1.3.35) (2024-09-26)


### Bug Fixes

* **update:** fix many errors; added new symbols ([5f38d3b](https://github.com/ThornWalli/web-workbench/commit/5f38d3bb216abe2737e2336f0ecca92dac472cec))

## [1.3.34](https://github.com/ThornWalli/web-workbench/compare/v1.3.33...v1.3.34) (2024-09-01)


### Bug Fixes

* **disk-extras13:** fix invalid import ([186ac24](https://github.com/ThornWalli/web-workbench/commit/186ac240ea06b086f6a08a9d959351cbc3be2f0b))

## [1.3.33](https://github.com/ThornWalli/web-workbench/compare/v1.3.32...v1.3.33) (2024-08-24)


### Bug Fixes

* **tools:** added tools ([e619686](https://github.com/ThornWalli/web-workbench/commit/e619686a62c9a39d686d2c3532600be2cb5b6376))
* **update:** improvements ([e431e6d](https://github.com/ThornWalli/web-workbench/commit/e431e6d5500591f4046caf0325fa5a21d8ed37c5))

## [1.3.33-beta.1](https://github.com/ThornWalli/web-workbench/compare/v1.3.32...v1.3.33-beta.1) (2024-08-24)


Expand Down
6 changes: 3 additions & 3 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ import eslintIgnores from './eslint.ignores.mjs';
export default withNuxt(
pluginSecurity.configs.recommended,
eslintPluginPrettierRecommended,
eslintIgnores,
{
files: ['**/*.js', '**/*.vue'],
ignores: eslintIgnores,
rules: {
'prettier/prettier': 'error',
classPrivateMethods: 'off',
Expand All @@ -17,12 +17,12 @@ export default withNuxt(
'no-console': 'off',
'no-empty-function': 'error',
'vue/no-v-html': 'off',
'vue/no-mutating-props': 'off',
'vue/no-mutating-props': 'warn',
'security/detect-non-literal-fs-filename': 'off',
complexity: [
'error',
{
max: 10
max: 12
}
],
'no-multiple-empty-lines': [
Expand Down
4 changes: 3 additions & 1 deletion eslint.ignores.mjs
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
export default ['.history', '.tmp', '.nuxt', 'node_modules', '.reports'];
export default {
ignores: ['.history', '**/.vitepress/cache/*', '**/dist/*']
};
4 changes: 2 additions & 2 deletions firebase.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"hosting": {
"public": "./",
"public": "./public",
"ignore": [
"firebase.json",
"**/.*",
Expand Down Expand Up @@ -31,4 +31,4 @@
}
]
}
}
}
10 changes: 8 additions & 2 deletions jsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,14 @@
"@web-workbench/core/*": [
"./core/*"
],
"@web-workbench/disks/*": [
"./disks/*"
"@web-workbench/disk-debug/*": [
"./disk-debug/*"
],
"@web-workbench/disk-extras13/*": [
"./disk-extras13/*"
],
"@web-workbench/disk-workbench13/*": [
"./disk-workbench13/*"
]
}
},
Expand Down
Loading

0 comments on commit 5a5a3bb

Please sign in to comment.