Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(yarn): run workspace commands in parallel #1543

Merged
merged 2 commits into from
Aug 11, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions yarn-project/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@
"prepare": "node ./yarn-project-base/scripts/update_package_jsons.mjs && yarn workspaces foreach run prepare && workspaces-to-typescript-project-references --tsconfigPath tsconfig.json && prettier -w */tsconfig.json",
"prepare:check": "node ./yarn-project-base/scripts/update_package_jsons.mjs --check && yarn workspaces foreach run prepare:check && workspaces-to-typescript-project-references --check --tsconfigPath tsconfig.json",
"docs": "typedoc --out docs/dist && cd docs && yarn serve",
"formatting": "yarn workspaces foreach -v run formatting",
"formatting:fix": "yarn workspaces foreach -v run formatting:fix",
"formatting": "yarn workspaces foreach -p -v run formatting",
"formatting:fix": "yarn workspaces foreach -p -v run formatting:fix",
"lint": "yarn eslint --cache --ignore-pattern l1-artifacts .",
"format": "yarn prettier --cache -w .",
"test": "yarn build && yarn workspaces foreach -v run test",
"build": "yarn workspace @aztec/l1-artifacts build && tsc -b tsconfig.json",
"build:dev": "yarn workspace @aztec/l1-artifacts build && tsc -b tsconfig.json --watch",
"clean": "yarn workspaces foreach -v run clean"
"clean": "yarn workspaces foreach -p -v run clean"
},
"workspaces": [
"acir-simulator",
Expand Down