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:
authorRichard Lau <riclau@uk.ibm.com>2019-12-03 02:43:01 +0300
committerMichael Perrotte <mike@npmjs.com>2019-12-03 20:28:53 +0300
commit4429645b3538e1cda54d8d1b7ecb3da7a88fdd3c (patch)
treed63c93448bcf6e0f6aa4a4c055780d15ecddfc33 /Makefile
parent4c1b16f6aecaf78956b9335734cfde2ac076ee11 (diff)
makefile: fix docs target typo
A few references to the `doc` target were not updated to `docs` in https://github.com/npm/cli/pull/274 and resulted in `make release` not building the docs. PR-URL: https://github.com/npm/cli/pull/546 Credit: @richardlau Close: #546 Reviewed-by: @mikemimik
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 11e656c43..dde925f1c 100644
--- a/Makefile
+++ b/Makefile
@@ -129,11 +129,11 @@ publish: gitclean ls-ok link docs-clean docs
git push origin --tags &&\
node bin/npm-cli.js publish --tag=$(PUBLISHTAG)
-release: gitclean ls-ok markedclean marked-manclean docs-clean doc
+release: gitclean ls-ok markedclean marked-manclean docs-clean docs
node bin/npm-cli.js prune --production --no-save
@bash scripts/release.sh
sandwich:
@[ $$(whoami) = "root" ] && (echo "ok"; echo "ham" > sandwich) || (echo "make it yourself" && exit 13)
-.PHONY: all latest install dev link doc clean uninstall test man docs-clean docclean release ls-ok realclean
+.PHONY: all latest install dev link docs clean uninstall test man docs-clean docclean release ls-ok realclean