Skip to content

Commit 2aaf046

Browse files
committed
(chore) Add Turborepo
1 parent 7752468 commit 2aaf046

File tree

4 files changed

+82
-1
lines changed

4 files changed

+82
-1
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,6 @@ npm-debug.log*
2626
yarn-debug.log*
2727
yarn-error.log*
2828

29+
.turbo/
30+
2931

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"scripts": {
77
"dev": "vite",
88
"build": "vite build",
9-
"lint": "eslint src --ext js",
9+
"lint": "TIMING=1 eslint src --ext js",
1010
"format": "prettier --write \"**/*.+(js|json|css|html)\"",
1111
"check": "prettier --check \"**/*.+(js|json|css|html)\"",
1212
"coverage": "jest --coverage",
@@ -68,6 +68,7 @@
6868
"pretty-quick": "^3.1.3",
6969
"react-test-renderer": "^18.1.0",
7070
"tailwindcss": "^3.2.1",
71+
"turbo": "^1.6.1",
7172
"vite": "^3.2.0",
7273
"whatwg-fetch": "^3.6.2"
7374
},

pnpm-lock.yaml

Lines changed: 63 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

turbo.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"$schema": "https://turborepo.org/schema.json",
3+
"pipeline": {
4+
"build": {
5+
"outputs": ["build/**"]
6+
},
7+
"lint": {
8+
"outputs": []
9+
},
10+
"test": {
11+
"dependsOn": [],
12+
"outputs": []
13+
}
14+
}
15+
}

0 commit comments

Comments
 (0)