Skip to content

Commit

Permalink
build(web): move build.pwa task to dependsOn attribute for make cache…
Browse files Browse the repository at this point in the history
… works
  • Loading branch information
spicyzboss committed Jan 3, 2024
1 parent ec2e4a7 commit d70007c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion apps/web/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,18 @@
"inputs": ["!{projectRoot}/pwa-assets.config.ts", "!{projectRoot}/public/assets/logo.png"],
"executor": "qwik-nx:build",
"options": {
"runSequence": ["web:build.pwa", "web:build.client", "web:build.ssr", "web:build.server", "web:build.bundle"],
"runSequence": ["web:build.client", "web:build.ssr", "web:build.server", "web:build.bundle"],
"outputPath": "dist/apps/web"
},
"dependsOn": [
{
"dependencies": true,
"target": "build",
"params": "ignore"
},
{
"target": "build.pwa",
"params": "ignore"
}
],
"configurations": {
Expand Down

0 comments on commit d70007c

Please sign in to comment.