Eric Clemmons
2022-03-17 18:15:17 -05:00
parent 05b436d4e1
commit 6c2e2ad2a5
5 changed files with 1927 additions and 0 deletions

2
.gitignore vendored
View File

@@ -1,3 +1,5 @@
.turbo
# Logs
logs
*.log

32
package.json Normal file
View 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

File diff suppressed because it is too large Load Diff

3
pnpm-workspace.yaml Normal file
View File

@@ -0,0 +1,3 @@
packages:
- "apps/*"
- "packages/*"

16
turbo.json Normal file
View 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
}
}
}