Skip to content

Commit 8a75639

Browse files
oceans404claude
andcommitted
fix: use --workspaces (plural) in install:contracts script
--workspace=packages targets a workspace named "packages" which doesn't exist. The config is "packages/*" so the actual workspaces are the individual subdirectories. --workspaces targets all of them. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent a965cf7 commit 8a75639

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"dev": "npm start",
88
"start": "concurrently --kill-others-on-fail --names stellar,vite -c gray,green --pad-prefix \"stellar scaffold watch --build-clients\" \"vite\"",
99
"build": "tsc -b && vite build",
10-
"install:contracts": "npm install --workspace=packages && npm run build --workspace=packages",
10+
"install:contracts": "npm install --workspaces && npm run build --workspaces",
1111
"preview": "vite preview",
1212
"lint": "eslint .",
1313
"format": "prettier . --write",

0 commit comments

Comments
 (0)