diff options
author | 2022-08-05 16:18:56 -0500 | |
---|---|---|
committer | 2022-08-05 16:18:56 -0500 | |
commit | c1248e9ed4c5d6f6d433676e04fa580116e6163b (patch) | |
tree | dfff3aad3a66bbd051eac6c5dc41c5148726a8d3 | |
parent | 5be35fd69b2e2d2663e54c78e9e903c8f77a3efd (diff) | |
download | astro-c1248e9ed4c5d6f6d433676e04fa580116e6163b.tar.gz astro-c1248e9ed4c5d6f6d433676e04fa580116e6163b.tar.zst astro-c1248e9ed4c5d6f6d433676e04fa580116e6163b.zip |
Update turbo scripts (#4177)
* chore: update turbo scripts
* fix: typo
Co-authored-by: Nate Moore <nate@astro.build>
-rw-r--r-- | package.json | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/package.json b/package.json index ef91b6327..4c62e25f4 100644 --- a/package.json +++ b/package.json @@ -8,21 +8,21 @@ }, "scripts": { "release": "pnpm run build && changeset publish", - "build": "turbo run build --output-logs=new-only --no-deps --scope=astro --scope=create-astro --scope=\"@astrojs/*\"", - "build:ci": "turbo run build:ci --output-logs=new-only --no-deps --scope=astro --scope=create-astro --scope=\"@astrojs/*\"", - "build:examples": "turbo run build --scope=\"@example/*\"", - "dev": "turbo run dev --no-deps --no-cache --parallel --scope=astro --scope=create-astro --scope=\"@astrojs/*\"", + "build": "turbo run build --output-logs=new-only --no-deps --filter=astro --filter=create-astro --filter=\"@astrojs/*\"", + "build:ci": "turbo run build:ci --output-logs=new-only --no-deps --filter=astro --filter=create-astro --filter=\"@astrojs/*\"", + "build:examples": "turbo run build --filter=\"@example/*\"", + "dev": "turbo run dev --no-deps --no-cache --parallel --filter=astro --filter=create-astro --filter=\"@astrojs/*\"", "format": "pnpm run format:code", "format:ci": "pnpm run format:imports && pnpm run format:code", "format:code": "prettier -w . --cache", "format:imports": "organize-imports-cli ./packages/*/tsconfig.json ./packages/*/*/tsconfig.json", - "test": "turbo run test --output-logs=new-only --concurrency=1", + "test": "turbo run test --output-logs=new-only --concurrency=1 --filter=astro --filter=create-astro --filter=\"@astrojs/*\"", "test:match": "cd packages/astro && pnpm run test:match", "test:smoke": "turbo run build --filter=\"@example/*\" --filter=\"astro.build\" --filter=\"docs\" --output-logs=new-only --concurrency=1", - "test:vite-ci": "turbo run test --output-logs=new-only --no-deps --scope=astro --concurrency=1", + "test:vite-ci": "turbo run test --filter=astro --output-logs=new-only --no-deps --concurrency=1", "test:e2e": "cd packages/astro && pnpm playwright install && pnpm run test:e2e", "test:e2e:match": "cd packages/astro && pnpm playwright install && pnpm run test:e2e:match", - "benchmark": "turbo run benchmark --scope=astro", + "benchmark": "turbo run benchmark --filter=astro", "lint": "eslint .", "version": "changeset version && pnpm install --no-frozen-lockfile && pnpm run format" }, |