We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0a8e4b7 + 2de6469 commit 9feaf47Copy full SHA for 9feaf47
1 file changed
Makefile
@@ -16,7 +16,7 @@ all: dist/debug.js
16
install: node_modules
17
18
clean:
19
- @rm -rf node_modules dist
+ @rm -rf dist
20
21
dist:
22
@mkdir -p $@
@@ -26,8 +26,11 @@ dist/debug.js: node_modules browser.js debug.js dist
26
--standalone debug \
27
. > $@
28
29
+distclean: clean
30
+ @rm -rf node_modules
31
+
32
node_modules: package.json
33
@NODE_ENV= $(NPM) install
34
@touch node_modules
35
-.PHONY: all install clean
36
+.PHONY: all install clean distclean
0 commit comments