-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Don't build packages from core twice (#210)
This was to simplify some install dependencies but this actually cause things in core from being built twice
- Loading branch information
1 parent
fba96db
commit fd85907
Showing
1 changed file
with
11 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,28 +4,29 @@ | |
"private": true, | ||
"packageManager": "[email protected]", | ||
"scripts": { | ||
"build": "pnpm -r --workspace-concurrency=Infinity --aggregate-output --reporter=append-only build ", | ||
"run-all": "pnpm -r --filter='!./core'", | ||
"build": "pnpm run-all --workspace-concurrency=Infinity --aggregate-output --reporter=append-only build ", | ||
"check-format": "pnpm run prettier --check", | ||
"check-version-mismatch": "syncpack list-mismatches", | ||
"change": "chronus", | ||
"clean": "pnpm -r run clean", | ||
"clean": "pnpm run-all run clean", | ||
"cspell": "cspell --no-progress \"**/*.{md,ts,tsx}\" ", | ||
"dogfood": "pnpm install && pnpm build && pnpm -r dogfood", | ||
"dogfood": "pnpm install && pnpm build && pnpm run-all dogfood", | ||
"fix-version-mismatch": "syncpack fix-mismatches", | ||
"format": "pnpm run prettier --write", | ||
"lint": "pnpm -r --parallel --aggregate-output --reporter=append-only run lint", | ||
"lint": "pnpm run-all --parallel --aggregate-output --reporter=append-only run lint", | ||
"merge-coverage": "c8 -- report --reporter=cobertura --reporter=text", | ||
"pack:all": "node ./eng/scripts/pack-all.js", | ||
"preinstall": "npx only-allow pnpm", | ||
"prepare-publish": "node ./eng/scripts/prepare-publish.js", | ||
"prettier": "prettier . --config .prettierrc.json", | ||
"purge": "rimraf --glob \"packages/*/node_modules/\" --glob \"core/packages/*/node_modules/\"", | ||
"regen-docs": "pnpm -r --parallel --aggregate-output --reporter=append-only run regen-docs", | ||
"regen-samples": "pnpm -r run regen-samples", | ||
"test-official": "pnpm -r --aggregate-output --reporter=append-only test-official", | ||
"test:e2e": "pnpm -r run e2e", | ||
"test": "pnpm -r --aggregate-output --reporter=append-only run test", | ||
"update-latest-docs": "pnpm -r run update-latest-docs", | ||
"regen-docs": "pnpm run-all --parallel --aggregate-output --reporter=append-only run regen-docs", | ||
"regen-samples": "pnpm run-all run regen-samples", | ||
"test-official": "pnpm run-all --aggregate-output --reporter=append-only test-official", | ||
"test:e2e": "pnpm run-all run e2e", | ||
"test": "pnpm run-all --aggregate-output --reporter=append-only run test", | ||
"update-latest-docs": "pnpm run-all run update-latest-docs", | ||
"watch": "tsc --build ./tsconfig.ws.json --watch" | ||
}, | ||
"devDependencies": { | ||
|