Skip to content

Commit

Permalink
run typescript task with turborepo
Browse files Browse the repository at this point in the history
  • Loading branch information
cherniavskii committed Aug 4, 2023
1 parent 353dee3 commit 1843b33
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
"test:performance:build": "webpack --config test/performance/webpack.config.js",
"test:performance:server": "serve test/performance -p 5001",
"test:argos": "node ./scripts/pushArgos.mjs",
"typescript": "lerna run --no-bail --parallel typescript",
"typescript": "turbo run --parallel --continue typescript",
"typescript:ci": "lerna run --concurrency 3 --no-bail --no-sort typescript",
"build:codesandbox": "yarn release:build",
"install:codesandbox": "PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD=1 yarn install --ignore-engines",
Expand Down
10 changes: 10 additions & 0 deletions turbo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"$schema": "https://turbo.build/schema.json",
"globalDependencies": ["tsconfig.json"],
"pipeline": {
"typescript": {
"dependsOn": ["^typescript"],
"outputs": []
}
}
}

0 comments on commit 1843b33

Please sign in to comment.