Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKat Marchán <kzm@sykosomatic.org>2017-05-16 03:54:34 +0300
committerRebecca Turner <me@re-becca.org>2017-05-26 04:55:22 +0300
commit96532ff5f9c7bddf2add0204164e79e9fe6c3616 (patch)
tree758148d0aaad3573480435b332e8acb22115d35c /Makefile
parent711f204c32131565f2b2e788ef6c22128d426177 (diff)
make: stop saving marked-man and prune stuff during build
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 2555ad138..7b69df98f 100644
--- a/Makefile
+++ b/Makefile
@@ -143,12 +143,12 @@ html/doc/misc/%.html: doc/misc/%.md $(html_docdeps)
marked: node_modules/.bin/marked
node_modules/.bin/marked:
- node bin/npm-cli.js install marked --no-global --no-timing
+ node bin/npm-cli.js install marked --no-global --no-timing --no-save
marked-man: node_modules/.bin/marked-man
node_modules/.bin/marked-man:
- node bin/npm-cli.js install marked-man --no-global --no-timing
+ node bin/npm-cli.js install marked-man --no-global --no-timing --no-save
doc: man
@@ -173,7 +173,7 @@ publish: gitclean ls-ok link doc-clean doc
node bin/npm-cli.js publish --tag=$(PUBLISHTAG)
release: gitclean ls-ok markedclean marked-manclean doc-clean doc
- node bin/npm-cli.js prune --production
+ node bin/npm-cli.js prune --production --no-save
@bash scripts/release.sh
sandwich: