We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b5519b commit b0cb92eCopy full SHA for b0cb92e
Makefile
@@ -68,8 +68,5 @@ docker-images:
68
69
# Call this target to see which Javascript dependencies are not up to date
70
check-js-updates:
71
- @if [[ ! -x ./node_modules/.bin/npm-check-updates ]]; then \
72
- npm install npm-check-updates > /dev/null 2>&1; \
73
- fi
74
- @ncu
+ @./tools/check_js_updates.sh
75
tools/check_js_updates.sh
@@ -0,0 +1,12 @@
1
+#!/bin/bash
2
+
3
+set -e
4
5
+CHECKER=./node_modules/.bin/ncu
6
7
+if [[ ! -x ${CHECKER} ]]; then
8
+ npm install npm-check-updates > /dev/null 2>&1; \
9
+fi
10
11
+${CHECKER}
12
0 commit comments