We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec065b2 commit 1f9eabaCopy full SHA for 1f9eaba
Makefile
@@ -24,9 +24,11 @@ misc_mandocs = $(shell find docs/content/using-npm -name '*.md' \
24
25
mandocs = $(cli_mandocs) $(files_mandocs) $(misc_mandocs)
26
27
+markdown_docs = $(shell for file in $(find lib/commands -name '*.js'); do echo docs/content/commands/npm-$(basename $file .js).md; done)
28
+
29
all: docs
30
-docs: mandocs htmldocs
31
+docs: mandocs htmldocs $(markdown_docs)
32
33
# don't regenerate the snapshot if we're generating
34
# snapshots, since presumably we just did that.
0 commit comments