forked from npm/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocs-build.js
More file actions
41 lines (33 loc) · 1.05 KB
/
docs-build.js
File metadata and controls
41 lines (33 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#!/usr/bin/env 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 frontmatter (match, p1) {
const fm = { }
p1.split(/\r?\n/).forEach((kv) => {
const result = kv.match(/^([^\s:]+):\s*(.*)/)
if (result)
fm[result[1]] = result[2]
})
return `# ${fm.title}(${fm.section}) - ${fm.description}`
}
function replacer (match, p1) {
return 'npm help ' + p1.replace(/npm /, '')
}
var result = data.replace(/@VERSION@/g, npm.version)
.replace(/^---\n([\s\S]+\n)---/, frontmatter)
.replace(/\[([^\]]+)\]\(\/commands\/([^)]+)\)/g, replacer)
.replace(/\[([^\]]+)\]\(\/configuring-npm\/([^)]+)\)/g, replacer)
.replace(/\[([^\]]+)\]\(\/using-npm\/([^)]+)\)/g, replacer)
.trim()
fs.writeFile(dest, marked(result), 'utf8', function (err) {
if (err)
return console.log(err)
})
})