Skip to content

Commit

Permalink
WIP - turbo
Browse files Browse the repository at this point in the history
  • Loading branch information
loganvolkers committed Aug 1, 2024
1 parent 43155de commit 3b4c0e8
Show file tree
Hide file tree
Showing 4 changed files with 95 additions and 20 deletions.
89 changes: 78 additions & 11 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,10 @@
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"turbo": "^1.13.3"
"turbo": "^2.0.3"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "^4.18.0"
}
},
"packageManager": "[email protected]"
}
12 changes: 6 additions & 6 deletions packages/react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,13 @@
},
"scripts": {
"start": "dts watch",
"dev:tests": "vitest",
"test:watch": "vitest",
"build": "dts build",
"test": "run-p test:*",
"test:vitest": "vitest run",
"test:playwright": "playwright test",
"test:storybook": "run-s storybook:build test:storybook:test-runner",
"test:storybook:test-runner": "npx concurrently -k -s first -n \"SB,TEST\" -c \"magenta,blue\" \"npm:serve-storybook\" \"npm:test-storybook\"",
"test": "run-p test-ci:*",
"test-ci:vitest": "vitest run",
"test-ci:playwright": "playwright test",
"test-ci:storybook": "run-s storybook:build test:storybook:test-runner",
"test-ci:storybook:test-runner": "npx concurrently -k -s first -n \"SB,TEST\" -c \"magenta,blue\" \"npm:serve-storybook\" \"npm:test-storybook\"",
"serve-storybook": "npx http-server .out --port 6600 --silent --cors",
"test-storybook": "run-s test-storybook:*",
"test-storybook:wait": "npx wait-on tcp:6600",
Expand Down
9 changes: 8 additions & 1 deletion turbo.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "https://turbo.build/schema.json",
"pipeline": {
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**"],
Expand All @@ -14,6 +14,13 @@
"dependsOn": ["^build"],
"outputs": []
},
"test:watch": {
"dependsOn": ["^build"],
"outputs": [],
"interactive": true,

"cache": false
},
"lint": {
"outputs": []
},
Expand Down

0 comments on commit 3b4c0e8

Please sign in to comment.