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

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoyee Cheung <joyeec9h3@gmail.com>2017-11-17 20:19:22 +0300
committerJoyee Cheung <joyeec9h3@gmail.com>2017-11-20 16:38:50 +0300
commit289fcb05be0efe5f57c742af7113547a4af94c69 (patch)
tree9225df0165151e8d500bffbeef4f6bdfa251e8a6 /test/doctool
parent07a4fa3dbefdc7f740a5a281f713998e71aab8f3 (diff)
build: do not build doc in source tarball
PR-URL: https://github.com/nodejs/node/pull/17100 Fixes: https://github.com/nodejs/node/issues/16650 Reviewed-By: Refael Ackermann <refack@gmail.com>
Diffstat (limited to 'test/doctool')
-rw-r--r--test/doctool/test-make-doc.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/doctool/test-make-doc.js b/test/doctool/test-make-doc.js
index 06386c0c818..ad372d71212 100644
--- a/test/doctool/test-make-doc.js
+++ b/test/doctool/test-make-doc.js
@@ -28,7 +28,7 @@ for (const html of linkedHtmls) {
assert.ok(docs.includes(html), `${html} does not exist`);
}
-const excludes = ['.json', '_toc', 'assets'];
+const excludes = ['.json', '.md', '_toc', 'assets'];
const generatedHtmls = docs.filter(function(doc) {
for (const exclude of excludes) {
if (doc.includes(exclude)) {