Skip to content

Commit

Permalink
chore: remove --scope for turbo
Browse files Browse the repository at this point in the history
  • Loading branch information
hikerpig committed Jun 19, 2024
1 parent 309c50f commit 5f567a8
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"upload-coverage": "codecov -f coverage/coverage-final.json",
"vercel-build": "npm run compile:browser && npm run build-site",
"watch": "pnpm exec turbo run watch --concurrency=10 --no-cache",
"watch:browser": "pnpm exec turbo run watch --concurrency=10 --no-cache --no-deps --scope='@pintora/diagrams'",
"watch:browser": "pnpm exec turbo run watch --concurrency=10 --no-cache --no-deps --filter='@pintora/diagrams'",
"website:dev": "cd website && npm run start"
},
"lint-staged": {
Expand Down
2 changes: 1 addition & 1 deletion scripts/build-site.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/env bash

pnpm exec turbo run build --scope='pintora-demo'
pnpm exec turbo run build --filter='pintora-demo'
pushd website && pnpm run build && popd
cp -r demo/dist/ website/build/demo
10 changes: 5 additions & 5 deletions scripts/watch-for-browser.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
pnpm exec turbo run watch --concurrency=10 \
--no-cache --no-deps --continue --parallel \
--scope="@pintora/renderer" \
--scope="@pintora/diagrams" \
--scope="@pintora/core" \
--scope="@pintora/test-shared" \
--scope="@pintora/standalone"
--filter="@pintora/renderer" \
--filter="@pintora/diagrams" \
--filter="@pintora/core" \
--filter="@pintora/test-shared" \
--filter="@pintora/standalone"

0 comments on commit 5f567a8

Please sign in to comment.