Skip to content

Commit

Permalink
docs: npm audit fix examples
Browse files Browse the repository at this point in the history
  • Loading branch information
brettstack committed Aug 28, 2021
1 parent 35db173 commit 50f83d0
Show file tree
Hide file tree
Showing 10 changed files with 44,541 additions and 3,281 deletions.
870 changes: 866 additions & 4 deletions examples/alb/package-lock.json

Large diffs are not rendered by default.

3,609 changes: 3,569 additions & 40 deletions examples/basic-starter-api-gateway-v1/package-lock.json

Large diffs are not rendered by default.

3,609 changes: 3,569 additions & 40 deletions examples/basic-starter-api-gateway-v2/package-lock.json

Large diffs are not rendered by default.

1,693 changes: 1,685 additions & 8 deletions examples/basic-starter-hapi/package-lock.json

Large diffs are not rendered by default.

1,800 changes: 1,796 additions & 4 deletions examples/basic-starter-koa/package-lock.json

Large diffs are not rendered by default.

19,068 changes: 18,984 additions & 84 deletions examples/basic-starter-nestjs/package-lock.json

Large diffs are not rendered by default.

867 changes: 863 additions & 4 deletions examples/custom-mapper-dynamodb/package-lock.json

Large diffs are not rendered by default.

3,616 changes: 3,576 additions & 40 deletions examples/lambda-edge/package-lock.json

Large diffs are not rendered by default.

16 changes: 16 additions & 0 deletions examples/recursive-audit-fix.sh
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
Loading

0 comments on commit 50f83d0

Please sign in to comment.