Skip to content

Commit

Permalink
(chore) Add Turborepo
Browse files Browse the repository at this point in the history
  • Loading branch information
denniskigen committed Oct 27, 2022
1 parent 7752468 commit 2aaf046
Show file tree
Hide file tree
Showing 4 changed files with 82 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,6 @@ npm-debug.log*
yarn-debug.log*
yarn-error.log*

.turbo/


3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "eslint src --ext js",
"lint": "TIMING=1 eslint src --ext js",
"format": "prettier --write \"**/*.+(js|json|css|html)\"",
"check": "prettier --check \"**/*.+(js|json|css|html)\"",
"coverage": "jest --coverage",
Expand Down Expand Up @@ -68,6 +68,7 @@
"pretty-quick": "^3.1.3",
"react-test-renderer": "^18.1.0",
"tailwindcss": "^3.2.1",
"turbo": "^1.6.1",
"vite": "^3.2.0",
"whatwg-fetch": "^3.6.2"
},
Expand Down
63 changes: 63 additions & 0 deletions pnpm-lock.yaml

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

15 changes: 15 additions & 0 deletions turbo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"$schema": "https://turborepo.org/schema.json",
"pipeline": {
"build": {
"outputs": ["build/**"]
},
"lint": {
"outputs": []
},
"test": {
"dependsOn": [],
"outputs": []
}
}
}

1 comment on commit 2aaf046

@vercel
Copy link

@vercel vercel bot commented on 2aaf046 Oct 27, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.