Skip to content

Commit f6668a8

Browse files
committed
Use the local node_modules/.bin.
This ensures that executables are consistent with the local package.json and not affected by any globally-installed packages.
1 parent 48f3fa8 commit f6668a8

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

Makefile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
# See the README for installation instructions.
22

3-
NODE_PATH ?= ./node_modules
4-
JS_UGLIFY = $(NODE_PATH)/uglify-js/bin/uglifyjs
5-
JS_TESTER = $(NODE_PATH)/vows/bin/vows
3+
JS_UGLIFY = node_modules/.bin/uglifyjs
4+
JS_TESTER = node_modules/.bin/vows
65
LOCALE ?= en_US
76

87
all: \

0 commit comments

Comments
 (0)