Skip to content

Commit

Permalink
ensure shared pkg builds when starting
Browse files Browse the repository at this point in the history
  • Loading branch information
51ngul4r1ty committed Jan 21, 2024
1 parent 05ae453 commit 867a6a2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,17 @@
"build-pkg:web-app": "npm run build -w packages/web-app",
"build-pkg:shared": "npm run build -w packages/shared",
"build-pkg:extension": "npm run build -w packages/vscode-extension",
"check-prereqs-pkg:web-app": "npm run check:prereqs -w packages/web-app",
"docker-pkg:web-app": "npm run build-pkg:web-app && npm run -w packages/web-app build:docker",
"clean-node-modules": "npx rimraf node_modules",
"package-pkg:extension": "npm run package -w packages/vscode-extension",
"publish-pkg:shared": "npm publish -w packages/shared",
"publish-alpha:shared": "npm run publish-alpha -w packages/shared",
"setup-database": "npm run setup -w packages/web-app",
"start": "npm run start-pkg:web-app",
"start": "npm run check-prereqs-pkg:web-app && npm run build-all && npm run start-only-pkg:web-app",
"start-docker:web-app": "npm run -w packages/web-app start:docker",
"start-pkg:web-app": "npm start -w packages/web-app",
"start-only-pkg:web-app": "npm run start-only -w packages/web-app",
"test": "npm run test-all",
"test-all": "npm run test -ws --if-present",
"test-all:unit": "npm run test:unit -ws --if-present",
Expand Down

0 comments on commit 867a6a2

Please sign in to comment.