-
Notifications
You must be signed in to change notification settings - Fork 245
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
### Bug Fixes * **jsii-pacmack:** default to target directory mode ([#363](#363)) ([967d917](967d917)) * **java-runtime:** Bump version of Jackson because of CVEs ([#362](#362)) ([140aa4d](140aa4d)) * **jsii:** detect double interface member declarations ([#360](#360)) ([b2b2c89](b2b2c89)), closes [#340](#340)
- Loading branch information
1 parent
e16d904
commit e429c41
Showing
91 changed files
with
15,784 additions
and
4,454 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
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,12 +1,19 @@ | ||
#!/bin/bash | ||
set -euo pipefail | ||
|
||
export NODE_OPTIONS="--max-old-space-size=4096 ${NODE_OPTIONS:-}" | ||
|
||
if ! npm ci --help; then | ||
echo "upgrading npm, because "npm ci" is not supported" | ||
npm i -g npm@~6.8.0 | ||
fi | ||
|
||
echo "=============================================================================================" | ||
echo "installing repo-global dependencies..." | ||
npm i --global-style | ||
npm ci --global-style | ||
|
||
export PATH=node_modules/.bin:$PATH | ||
|
||
echo "=============================================================================================" | ||
echo "boostrapping..." | ||
lerna bootstrap --reject-cycles | ||
lerna bootstrap --reject-cycles --ci |
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 |
---|---|---|
|
@@ -8,5 +8,5 @@ | |
"rejectCycles": true | ||
} | ||
}, | ||
"version": "0.7.14" | ||
"version": "0.7.15" | ||
} |
Oops, something went wrong.