-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(build) buildup/builddown: Ensure lerna is on PATH (#3094)
- Loading branch information
Simon-Pierre Gingras
authored and
Elad Ben-Israel
committed
Jun 27, 2019
1 parent
800ecf2
commit 71ad83d
Showing
2 changed files
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
#!/bin/bash | ||
set -euo pipefail | ||
|
||
export PATH=$(npm bin):$PATH | ||
export NODE_OPTIONS="--max-old-space-size=4096 ${NODE_OPTIONS:-}" | ||
|
||
scriptdir=$(cd $(dirname $0) && pwd) | ||
export PATH=$(cd $scriptdir && npm bin):$PATH | ||
scope=$(${scriptdir}/current-scope) | ||
exec lerna run build --scope ${scope} --include-filtered-dependents |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
#!/bin/bash | ||
set -euo pipefail | ||
|
||
export PATH=$(npm bin):$PATH | ||
export NODE_OPTIONS="--max-old-space-size=4096 ${NODE_OPTIONS:-}" | ||
|
||
scriptdir=$(cd $(dirname $0) && pwd) | ||
export PATH=$(cd $scriptdir && npm bin):$PATH | ||
scope=$(${scriptdir}/current-scope) | ||
exec lerna run build --scope ${scope} --include-filtered-dependencies |