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:
Diffstat (limited to 'deps/npm/lib/utils/config/describe-all.js')
-rw-r--r--deps/npm/lib/utils/config/describe-all.js5
1 files changed, 4 insertions, 1 deletions
diff --git a/deps/npm/lib/utils/config/describe-all.js b/deps/npm/lib/utils/config/describe-all.js
index 5fb785f0831..c8a973cc0fd 100644
--- a/deps/npm/lib/utils/config/describe-all.js
+++ b/deps/npm/lib/utils/config/describe-all.js
@@ -11,6 +11,9 @@ const describeAll = () => {
}
return Object.entries(definitions).sort(sort)
.map(([key, def]) => def.describe())
- .join('\n\n')
+ .join(
+ '\n\n<!-- automatically generated, do not edit manually -->\n' +
+ '<!-- see lib/utils/config/definitions.js -->\n\n'
+ )
}
module.exports = describeAll