Skip to content

Commit

Permalink
chore: update dev-app build command
Browse files Browse the repository at this point in the history
  • Loading branch information
bre97-web committed Sep 5, 2024
1 parent f34adc9 commit 6f87f2c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-to-gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
run: npm run compile

- name: Build test page
run: npm run build -w test
run: npm run build:dev-app

- name: Upload production-ready build files
uses: actions/upload-artifact@v3
Expand Down
10 changes: 7 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,9 @@
"dev-app"
],
"scripts": {
"dev": "wireit",
"compile": "wireit"
"dev:dev-app": "wireit",
"compile": "wireit",
"build:dev-app": "wireit"
},
"author": "bre97-web",
"license": "MIT",
Expand All @@ -64,7 +65,7 @@
"wireit": "^0.14.9"
},
"wireit": {
"dev": {
"dev:dev-app": {
"command": "npm run dev -w dev-app",
"files": [
"src/**/*",
Expand All @@ -80,6 +81,9 @@
"build/**/*"
],
"clean": true
},
"build:dev-app": {
"command": "npm run build -w dev-app"
}
}
}

0 comments on commit 6f87f2c

Please sign in to comment.