-
Notifications
You must be signed in to change notification settings - Fork 671
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
35db173
commit 50f83d0
Showing
10 changed files
with
44,541 additions
and
3,281 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
3,609 changes: 3,569 additions & 40 deletions
3,609
examples/basic-starter-api-gateway-v1/package-lock.json
Large diffs are not rendered by default.
Oops, something went wrong.
3,609 changes: 3,569 additions & 40 deletions
3,609
examples/basic-starter-api-gateway-v2/package-lock.json
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
19,068 changes: 18,984 additions & 84 deletions
19,068
examples/basic-starter-nestjs/package-lock.json
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
#!/bin/bash | ||
FILE=package.json | ||
for d in ./*/ | ||
do | ||
( | ||
cd "$d"; | ||
if [[ -f "$FILE" ]]; | ||
then | ||
echo $d; | ||
npm audit fix; | ||
else | ||
echo "This directory does not contain a node project" | ||
fi | ||
|
||
) | ||
done |
Oops, something went wrong.