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

Increase build speed 4x - parallel run, no clean on build #274

Merged
merged 1 commit into from
Feb 20, 2023
Merged
Show file tree
Hide file tree
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
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@
]
},
"scripts": {
"format": "wsrun -ecsm format",
"format:fix": "wsrun -ecsm format:fix",
"lint": "wsrun -ecsm lint",
"lint:fix": "wsrun -ecsm lint:fix",
"typecheck": "wsrun -ecsm typecheck",
"format": "wsrun -em format",
"format:fix": "wsrun -em format:fix",
"lint": "wsrun -em lint",
"lint:fix": "wsrun -em lint:fix",
"typecheck": "wsrun -em typecheck",
"test": "wsrun -ecsm test",
"build": "wsrun -ecsm build",
"build": "wsrun -etm build",
"clean": "wsrun -ecsm clean",
"start": "cd packages/backend && yarn start"
},
Expand Down
1 change: 0 additions & 1 deletion packages/backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
"lint": "eslint --ext .ts --max-warnings 0 src",
"lint:fix": "yarn lint --fix",
"typecheck": "tsc --noEmit",
"prebuild": "yarn clean",
"build": "tsc",
"postbuild": "cp src/core/migrations/blockTimestamps.json build/core/migrations/blockTimestamps.json",
"clean": "rm -rf build",
Expand Down
1 change: 0 additions & 1 deletion packages/crypto/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
"lint": "eslint --ext .ts --max-warnings 0 src",
"lint:fix": "yarn lint --fix",
"typecheck": "tsc --noEmit",
"prebuild": "yarn clean",
"build": "tsc",
"clean": "rm -rf build",
"test": "mocha"
Expand Down
1 change: 0 additions & 1 deletion packages/encoding/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
"lint": "eslint --ext .ts --max-warnings 0 src",
"lint:fix": "yarn lint --fix",
"typecheck": "tsc --noEmit",
"prebuild": "yarn clean",
"build": "tsc",
"clean": "rm -rf build",
"test": "mocha"
Expand Down
1 change: 0 additions & 1 deletion packages/frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
"lint": "eslint --ext .ts,.tsx --max-warnings 0 src",
"lint:fix": "yarn lint --fix",
"typecheck": "tsc --noEmit",
"prebuild": "yarn clean",
"build": "NODE_ENV=production gulp build",
"clean": "rm -rf build",
"test": "mocha",
Expand Down
1 change: 0 additions & 1 deletion packages/shared/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
"lint": "eslint --ext .ts --max-warnings 0 src",
"lint:fix": "yarn lint --fix",
"typecheck": "tsc --noEmit",
"prebuild": "yarn clean",
"build": "tsc",
"clean": "rm -rf build",
"test": "mocha"
Expand Down
1 change: 0 additions & 1 deletion packages/state/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
"lint": "eslint --ext .ts --max-warnings 0 src",
"lint:fix": "yarn lint --fix",
"typecheck": "tsc --noEmit",
"prebuild": "yarn clean",
"build": "tsc",
"clean": "rm -rf build",
"test": "mocha"
Expand Down
1 change: 0 additions & 1 deletion packages/types/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
"lint": "eslint --ext .ts --max-warnings 0 src",
"lint:fix": "yarn lint --fix",
"typecheck": "tsc --noEmit",
"prebuild": "yarn clean",
"build": "tsc",
"clean": "rm -rf build",
"test": "mocha"
Expand Down