Skip to content

Commit

Permalink
Don't build packages from core twice (#210)
Browse files Browse the repository at this point in the history
This was to simplify some install dependencies but this actually cause
things in core from being built twice
  • Loading branch information
timotheeguerin authored Feb 5, 2024
1 parent fba96db commit fd85907
Showing 1 changed file with 11 additions and 10 deletions.
21 changes: 11 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand Down

0 comments on commit fd85907

Please sign in to comment.