summaryrefslogtreecommitdiff
path: root/deps/npm/Makefile
diff options
context:
space:
mode:
authorTimothy J Fontaine <tjfontaine@gmail.com>2014-09-24 14:41:07 -0700
committerTimothy J Fontaine <tjfontaine@gmail.com>2014-09-24 17:15:10 -0700
commit9fad8958df671c0e894506ef59b4c781c3dfb349 (patch)
tree4db7643b40c4ffd726fb27fb4aa276d420b3bfd8 /deps/npm/Makefile
parentb26dd4e5ab9192bad72b9dc61fa4ad2d8f215da2 (diff)
downloadandroid-node-v8-9fad8958df671c0e894506ef59b4c781c3dfb349.tar.gz
android-node-v8-9fad8958df671c0e894506ef59b4c781c3dfb349.tar.bz2
android-node-v8-9fad8958df671c0e894506ef59b4c781c3dfb349.zip
deps: upgrade npm to 2.0.0
Diffstat (limited to 'deps/npm/Makefile')
-rw-r--r--deps/npm/Makefile16
1 files changed, 8 insertions, 8 deletions
diff --git a/deps/npm/Makefile b/deps/npm/Makefile
index 540e2da05b..fe2d963bba 100644
--- a/deps/npm/Makefile
+++ b/deps/npm/Makefile
@@ -72,7 +72,7 @@ dev: install
link: uninstall
node cli.js link -f
-clean: markedclean ronnclean doc-clean uninstall
+clean: markedclean marked-manclean doc-clean uninstall
rm -rf npmrc
node cli.js cache clean
@@ -84,19 +84,19 @@ doc: $(mandocs) $(htmldocs)
markedclean:
rm -rf node_modules/marked node_modules/.bin/marked .building_marked
-ronnclean:
- rm -rf node_modules/ronn node_modules/.bin/ronn .building_ronn
+marked-manclean:
+ rm -rf node_modules/marked-man node_modules/.bin/marked-man .building_marked-man
docclean: doc-clean
doc-clean:
rm -rf \
.building_marked \
- .building_ronn \
+ .building_marked-man \
html/doc \
html/api \
man
-# use `npm install ronn` for this to work.
+# use `npm install marked-man` for this to work.
man/man1/npm-README.1: README.md scripts/doc-build.sh package.json
@[ -d man/man1 ] || mkdir -p man/man1
scripts/doc-build.sh $< $@
@@ -161,10 +161,10 @@ marked: node_modules/.bin/marked
node_modules/.bin/marked:
node cli.js install marked --no-global
-ronn: node_modules/.bin/ronn
+marked-man: node_modules/.bin/marked-man
-node_modules/.bin/ronn:
- node cli.js install ronn --no-global
+node_modules/.bin/marked-man:
+ node cli.js install marked-man --no-global
doc: man