Skip to content

Commit

Permalink
fix: package.json 'build' script
Browse files Browse the repository at this point in the history
  • Loading branch information
isaac-mason committed Dec 6, 2023
1 parent bc6db28 commit fbaa0e5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
"examples/*"
],
"scripts": {
"build": "(cd packages/recast-navigation-wasm && yarn build) && yarn workspaces foreach -t --exclude @recast-navigation/wasm run build",
"build": "yarn build:packages && yarn build:apps",
"build:packages": "(cd packages/recast-navigation-wasm && yarn build) && yarn workspaces foreach -t --include recast-navigation --include @recast-navigation/core --include @recast-navigation/generators --include @recast-navigation/three run build",
"build:navmesh-website": "(cd apps/navmesh-website && yarn build)",
"build:apps": "yarn workspaces foreach -t --include navmesh-website --include docs run build",
"test": "concurrently --kill-others-on-fail \"yarn test:unit-tests\" \"yarn test:node-smoke-test\" \"yarn test:bundlers-smoke-test\"",
"test:unit-tests": "yarn workspaces foreach -t --include recast-navigation run test",
"test:node-smoke-test": "(cd ./examples/node-cjs-example && yarn start) && (cd ./examples/node-esm-example && yarn start)",
Expand Down

0 comments on commit fbaa0e5

Please sign in to comment.