X7ROOT File Manager
Current Path:
/opt/alt/alt-nodejs14/root/usr/lib/node_modules/npm/scripts
opt
/
alt
/
alt-nodejs14
/
root
/
usr
/
lib
/
node_modules
/
npm
/
scripts
/
ðŸ“
..
📄
changelog.js
(3 KB)
📄
clean-old.sh
(4.17 KB)
📄
dep-update
(294 B)
📄
dev-dep-update
(292 B)
📄
docs-build.js
(847 B)
📄
gen-changelog
(420 B)
📄
gen-dev-ignores.js
(350 B)
📄
install.sh
(5.47 KB)
📄
maketest
(1.82 KB)
📄
pr
(3.96 KB)
📄
publish-tag.js
(151 B)
📄
release.sh
(889 B)
📄
relocate.sh
(673 B)
📄
update-authors.sh
(197 B)
📄
update-dist-tags.js
(3.46 KB)
Editing: docs-build.js
#!/opt/alt/alt-nodejs14/root/usr/bin/node var fs = require('fs') var marked = require('marked-man') var npm = require('../lib/npm.js') var args = process.argv.slice(2) var src = args[0] var dest = args[1] || src fs.readFile(src, 'utf8', function (err, data) { if (err) return console.log(err) function replacer (match, p1) { return 'npm help ' + p1.replace(/npm /, '') } var result = data.replace(/@VERSION@/g, npm.version) .replace(/^---([\s\S]+?)---/g, '') .replace(/\[([^\]]+)\]\(\/cli-commands\/([^)]+)\)/g, replacer) .replace(/\[([^\]]+)\]\(\/configuring-npm\/([^)]+)\)/g, replacer) .replace(/\[([^\]]+)\]\(\/using-npm\/([^)]+)\)/g, replacer) .replace(/(# .*)\s+(## (.*))/g, '$1 - $3') .trim() fs.writeFile(dest, marked(result), 'utf8', function (err) { if (err) return console.log(err) }) })
Upload File
Create Folder