Merge pull request #162 from alphinus/fix/bundle-workspace-deps
Reviewed: approach is correct, bundleDependencies is the standard fix for workspace packages in registry installs.
This commit is contained in:
commit
1e8fb6e01f
2 changed files with 21 additions and 0 deletions
11
package-lock.json
generated
11
package-lock.json
generated
|
|
@ -7,6 +7,12 @@
|
|||
"": {
|
||||
"name": "gsd-pi",
|
||||
"version": "2.7.0",
|
||||
"bundleDependencies": [
|
||||
"@gsd/pi-agent-core",
|
||||
"@gsd/pi-ai",
|
||||
"@gsd/pi-coding-agent",
|
||||
"@gsd/pi-tui"
|
||||
],
|
||||
"hasInstallScript": true,
|
||||
"license": "MIT",
|
||||
"workspaces": [
|
||||
|
|
@ -14,6 +20,10 @@
|
|||
],
|
||||
"dependencies": {
|
||||
"@clack/prompts": "^1.1.0",
|
||||
"@gsd/pi-agent-core": "*",
|
||||
"@gsd/pi-ai": "*",
|
||||
"@gsd/pi-coding-agent": "*",
|
||||
"@gsd/pi-tui": "*",
|
||||
"picocolors": "^1.1.1",
|
||||
"playwright": "^1.58.2"
|
||||
},
|
||||
|
|
@ -3550,6 +3560,7 @@
|
|||
"resolved": "https://registry.npmjs.org/zod/-/zod-4.3.6.tgz",
|
||||
"integrity": "sha512-rftlrkhHZOcjDwkGlnUtZZkvaPHCsDATp4pGpuOOMDaTdDDXF91wuVDJoWoPsKX/3YPQ5fHuF3STjcYyKr+Qhg==",
|
||||
"license": "MIT",
|
||||
"peer": true,
|
||||
"funding": {
|
||||
"url": "https://github.com/sponsors/colinhacks"
|
||||
}
|
||||
|
|
|
|||
10
package.json
10
package.json
|
|
@ -53,9 +53,19 @@
|
|||
},
|
||||
"dependencies": {
|
||||
"@clack/prompts": "^1.1.0",
|
||||
"@gsd/pi-agent-core": "*",
|
||||
"@gsd/pi-ai": "*",
|
||||
"@gsd/pi-coding-agent": "*",
|
||||
"@gsd/pi-tui": "*",
|
||||
"picocolors": "^1.1.1",
|
||||
"playwright": "^1.58.2"
|
||||
},
|
||||
"bundleDependencies": [
|
||||
"@gsd/pi-agent-core",
|
||||
"@gsd/pi-ai",
|
||||
"@gsd/pi-coding-agent",
|
||||
"@gsd/pi-tui"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@types/node": "^22.0.0",
|
||||
"typescript": "^5.4.0"
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue