mirror of
https://github.com/BloopAI/vibe-kanban-web-companion.git
synced 2026-08-23 11:58:32 +00:00
Add turbo
https://github.com/vercel/turborepo/tree/main/examples/with-pnpm
This commit is contained in:
2
.gitignore
vendored
2
.gitignore
vendored
@@ -1,3 +1,5 @@
|
||||
.turbo
|
||||
|
||||
# Logs
|
||||
logs
|
||||
*.log
|
||||
|
||||
32
package.json
Normal file
32
package.json
Normal file
@@ -0,0 +1,32 @@
|
||||
{
|
||||
"name": "click-to-component",
|
||||
"version": "1.0.0",
|
||||
"description": "Option+Click your React/Vue components in your browser to open the source file in VS Code",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"build": "turbo run build",
|
||||
"dev": "turbo run dev --parallel",
|
||||
"lint": "turbo run lint"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/ericclemmons/click-to-component.git"
|
||||
},
|
||||
"keywords": [
|
||||
"react",
|
||||
"vue",
|
||||
"dx",
|
||||
"vscode",
|
||||
"devtools"
|
||||
],
|
||||
"author": "Eric Clemmons <eric@smarterspam.com>",
|
||||
"license": "ISC",
|
||||
"bugs": {
|
||||
"url": "https://github.com/ericclemmons/click-to-component/issues"
|
||||
},
|
||||
"homepage": "https://github.com/ericclemmons/click-to-component#readme",
|
||||
"devDependencies": {
|
||||
"turbo": "^1.1.6"
|
||||
},
|
||||
"packageManager": "pnpm@6.32.3"
|
||||
}
|
||||
1874
pnpm-lock.yaml
generated
Normal file
1874
pnpm-lock.yaml
generated
Normal file
File diff suppressed because it is too large
Load Diff
3
pnpm-workspace.yaml
Normal file
3
pnpm-workspace.yaml
Normal file
@@ -0,0 +1,3 @@
|
||||
packages:
|
||||
- "apps/*"
|
||||
- "packages/*"
|
||||
16
turbo.json
Normal file
16
turbo.json
Normal file
@@ -0,0 +1,16 @@
|
||||
{
|
||||
"$schema": "https://turborepo.org/schema.json",
|
||||
"baseBranch": "origin/main",
|
||||
"pipeline": {
|
||||
"build": {
|
||||
"dependsOn": ["^build"],
|
||||
"outputs": ["dist/**", ".next/**"]
|
||||
},
|
||||
"lint": {
|
||||
"outputs": []
|
||||
},
|
||||
"dev": {
|
||||
"cache": false
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user