Skip to content

Commit

Permalink
add config's npm install steps to build scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
nick-funk committed Jul 27, 2023
1 parent 52d02d8 commit a2db25b
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions npm-ci.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
#!/bin/bash
set -e

echo "running \`npm install\` for \`config\`"
cd config
npm ci
cd ..

echo "running \`npm install\` for \`common\`"
cd common
npm ci
Expand Down
5 changes: 5 additions & 0 deletions npm-i.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
#!/bin/bash
set -e

echo "running \`npm install\` for \`config\`"
cd config
npm i
cd ..

echo "running \`npm install\` for \`common\`"
cd common
npm i
Expand Down

0 comments on commit a2db25b

Please sign in to comment.