Skip to content

Commit 525f60d

Browse files
author
Andrew Welch
committed
Added make update & make update-clean to update NPM packages
1 parent e4d99b6 commit 525f60d

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

Makefile

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,15 @@ docs: docker
3232
install: docker
3333
${DOCKERRUN} \
3434
install
35+
update: docker
36+
rm -f buildchain/package-lock.json
37+
${DOCKERRUN} \
38+
install
39+
update-clean: docker
40+
rm -f buildchain/package-lock.json
41+
rm -rf buildchain/node_modules/
42+
${DOCKERRUN} \
43+
install
3544
npm: docker
3645
${DOCKERRUN} \
3746
$(filter-out $@,$(MAKECMDGOALS))

0 commit comments

Comments
 (0)