Skip to content

Commit 28cb9be

Browse files
v-aukaiz-ioMichael Kaiser
authored
Fix 'npm install' failure. (#1071)
* Fix 'npm install' failure. - Packages bumped to the respective versions [1][2]. [1]:#911 [2]:#1064 * Feat:Update yarn --------- Co-authored-by: Michael Kaiser <[email protected]> Co-authored-by: Michael Kaiser <[email protected]>
1 parent 8a86d64 commit 28cb9be

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

scripts/build-typescript.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ echo "running build for typescript/${projFile}"
1313
echo "=============================="
1414

1515
cd $scriptdir/../$(dirname $projFile)
16-
if [ -f DO_NOT_AUTOTEST ]; then
16+
if [ -f DO_NOT_AUTOTEST ]; then
1717
echo "found DO_NOT_AUTOTEST, skip it."
1818
return
1919
fi
@@ -33,9 +33,9 @@ elif [ -f "package-lock.json" ]; then
3333
npm run --if-present test
3434
else
3535
echo "No lock files found (yarn.lock or package-lock.json) but package.json available. Running 'yarn install'... "
36-
yarn install
36+
yarn install --mutex network
3737
yarn build
3838
npm run --if-present test
3939
fi
4040
# try cdk synth
41-
$scriptdir/synth.sh
41+
$scriptdir/synth.sh

typescript/rds/mysql/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
"devDependencies": {
1313
"@types/jest": "^26.0.10",
1414
"@types/node": "*",
15-
"jest": "^26.4.2",
16-
"ts-jest": "^26.2.0",
15+
"jest": "29.6.4",
16+
"ts-jest": "29.2.4",
1717
"ts-node": "^10.9.1",
1818
"aws-cdk": "*",
1919
"typescript": "~5.1.6"

0 commit comments

Comments
 (0)