Skip to content

Commit

Permalink
Correct script names
Browse files Browse the repository at this point in the history
  • Loading branch information
thetarnav committed Nov 1, 2023
1 parent b730c5f commit 223b1e5
Show file tree
Hide file tree
Showing 8 changed files with 49 additions and 49 deletions.
18 changes: 9 additions & 9 deletions packages/debugger/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,6 @@
"bugs": {
"url": "https://github.com/thetarnav/solid-devtools/issues"
},
"keywords": [
"solid",
"devtools",
"debugger",
"reactivity"
],
"private": false,
"sideEffects": false,
"publishConfig": {
Expand Down Expand Up @@ -73,8 +67,8 @@
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"test": "vitest",
"typecheck": "tsc --noEmit --paths null"
"test:unit": "vitest",
"test:types": "tsc --noEmit --paths null"
},
"dependencies": {
"@nothing-but/utils": "~0.3.2",
Expand All @@ -96,5 +90,11 @@
"devDependencies": {
"solid-js": "^1.7.8"
},
"packageManager": "[email protected]"
"packageManager": "[email protected]",
"keywords": [
"solid",
"devtools",
"debugger",
"reactivity"
]
}
4 changes: 2 additions & 2 deletions packages/extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
"dev": "vite --port 3333",
"build": "npm run clean && vite build && node scripts/zip.cjs",
"clean": "rimraf dist dist.zip",
"test": "vitest",
"typecheck": "tsc --noEmit --paths null"
"test:unit": "vitest",
"test:types": "tsc --noEmit --paths null"
},
"devDependencies": {
"@crxjs/vite-plugin": "2.0.0-beta.17",
Expand Down
4 changes: 2 additions & 2 deletions packages/frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@
"build": "pnpm run --filter frontend --parallel /build:.*/",
"build:code": "tsup",
"build:css": "unocss \"src/**/*.tsx\" -o dist/styles.css",
"test": "vitest",
"typecheck": "tsc --noEmit"
"test:unit": "vitest",
"test:types": "tsc --noEmit"
},
"dependencies": {
"@solid-devtools/debugger": "workspace:^",
Expand Down
20 changes: 10 additions & 10 deletions packages/logger/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,6 @@
"bugs": {
"url": "https://github.com/thetarnav/solid-devtools/issues"
},
"keywords": [
"solid",
"devtools",
"logger",
"console",
"debugger"
],
"private": false,
"sideEffects": false,
"publishConfig": {
Expand Down Expand Up @@ -51,8 +44,8 @@
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"test": "echo \"NOOP test\"",
"typecheck": "tsc --noEmit --paths null"
"test:unit": "echo \"NOOP test\"",
"test:types": "tsc --noEmit --paths null"
},
"devDependencies": {
"tsup": "^7.1.0",
Expand All @@ -67,5 +60,12 @@
"peerDependencies": {
"solid-js": "^1.7.0"
},
"packageManager": "[email protected]"
"packageManager": "[email protected]",
"keywords": [
"solid",
"devtools",
"logger",
"console",
"debugger"
]
}
20 changes: 10 additions & 10 deletions packages/main/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,6 @@
"bugs": {
"url": "https://github.com/thetarnav/solid-devtools/issues"
},
"keywords": [
"solid",
"devtools",
"reactivity",
"extension",
"chrome"
],
"private": false,
"sideEffects": true,
"publishConfig": {
Expand Down Expand Up @@ -102,8 +95,8 @@
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"test": "vitest",
"typecheck": "tsc --noEmit --paths null"
"test:unit": "vitest",
"test:types": "tsc --noEmit --paths null"
},
"devDependencies": {
"@babel/core": "^7.18.13",
Expand Down Expand Up @@ -136,5 +129,12 @@
"optional": true
}
},
"packageManager": "[email protected]"
"packageManager": "[email protected]",
"keywords": [
"solid",
"devtools",
"reactivity",
"extension",
"chrome"
]
}
2 changes: 1 addition & 1 deletion packages/overlay/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
"scripts": {
"dev": "pnpm run build --watch",
"build": "tsx ./scripts/build.ts",
"typecheck": "tsc --noEmit --paths null"
"test:types": "tsc --noEmit --paths null"
},
"dependencies": {
"@solid-devtools/debugger": "workspace:^",
Expand Down
4 changes: 2 additions & 2 deletions packages/shared/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"test": "vitest",
"typecheck": "tsc --noEmit --paths null"
"test:unit": "vitest",
"test:types": "tsc --noEmit --paths null"
},
"private": false,
"sideEffects": false,
Expand Down
26 changes: 13 additions & 13 deletions turbo.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
{
"$schema": "https://turborepo.org/schema.json",
"pipeline": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**"]
},
"test": {
"dependsOn": ["^build"],
"outputs": []
},
"typecheck": {
"dependsOn": ["^build"]
"$schema": "https://turborepo.org/schema.json",
"pipeline": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**"]
},
"test:unit": {
"dependsOn": ["^build"],
"outputs": []
},
"test:types": {
"dependsOn": ["^build"]
}
}
}
}

0 comments on commit 223b1e5

Please sign in to comment.