Skip to content

Commit eb33ac7

Browse files
Fix postinstall script
1 parent 41f12aa commit eb33ac7

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
@@ -9,7 +9,7 @@
99
"prettier": "^1.19.1"
1010
},
1111
"scripts": {
12-
"postinstall": "for name in $( ls -d packages/* ); do echo \"Installing packages for $name\"; pushd \"$name\"; npm install > /dev/null & popd; done; wait",
12+
"postinstall": "for name in $( ls -d packages/* ); do echo \"Installing packages for $name\"; npm install --prefix \"./$name\" > /dev/null & done; wait",
1313
"version": "lerna changed && lerna version",
1414
"publish": "lerna changed && lerna publish from-package",
1515
"lint": "eslint --ignore-path .gitignore ."

0 commit comments

Comments
 (0)