Skip to content

Commit

Permalink
Internal: Fixed yarn workspace configuration so it also install deps …
Browse files Browse the repository at this point in the history
…(e.g. hooks) of external repos.
  • Loading branch information
Reinmar committed May 15, 2020
1 parent 75d6912 commit 09071e4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@
"test": "node --max_old_space_size=4096 node_modules/@ckeditor/ckeditor5-dev-tests/bin/test.js",
"manual": "node --max_old_space_size=4096 node_modules/@ckeditor/ckeditor5-dev-tests/bin/test-manual.js",
"bootstrap": "yarn install",
"clean": "rm -rf node_modules",
"clean": "rm -rf ./node_modules && rm -rf ./external/*/node_modules",
"reset": "rm -rf ./node_modules && yarn run bootstrap",
"reinstall": "yarn run clean && yarn run bootstrap",
"docs": "node --max-old-space-size=4096 ./scripts/docs/build-docs.js",
Expand Down Expand Up @@ -167,6 +167,7 @@
"workspaces": {
"packages": [
"packages/*",
"external/*",
"external/*/packages/*",
"."
],
Expand Down

0 comments on commit 09071e4

Please sign in to comment.