-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
103 lines (80 loc) · 1.94 KB
/
index.js
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
const fs = require('fs')
const os = require('os')
const path = require('path')
const parse = require('./parse')
const compile = require('./compile')
//
// Find all header files except in ./deps or hidden dirs
//
const read = d => {
const files = fs.readdirSync(d)
let paths = files.map(f => path.join(d, f))
let headers = []
for (const i in paths) {
const p = paths[i]
const base = path.basename(p)
const dontParse = (
(base[0] === '.') ||
(base === 'deps') ||
(base === 'hyper-docs')
)
if (dontParse) continue
const stat = fs.statSync(p)
if (stat.isDirectory()) {
headers.push(...read(p))
} else if (path.extname(p) === '.hxx') {
headers.push(p)
}
}
return headers
}
//
// Find the package.json for any given header file
//
const findPackage = file => {
const dir = path.dirname(file)
const target = path.join(dir, 'package.json')
try {
fs.statSync(target)
} catch (ex) {
return findPackage(path.join(dir, '..'))
}
return require(target)
}
const parseUrl = s => {
let url = s.split('//')[1]
if (!url) url = s.split('@')[1]
return 'https://' + url.replace(':', '/').replace('.git', '')
}
//
// Read all files from a path and parse their headers for docs
//
function main (argv) {
if (!argv.length) {
let buffers = fs
.readFileSync(0, 'utf8')
.split(os.EOL)
.filter(Boolean)
try {
buffers = buffers.map(JSON.parse)
} catch (err) {
console.error(err.message)
process.exit(1)
}
compile(buffers)
return
}
const files = read(argv[0])
for (const file of files) {
const pkg = findPackage(file)
if (!pkg) {
console.error('missing package.json for', file)
continue
}
const s = fs.readFileSync(file, 'utf8')
const output = parse(s)
output.repo = parseUrl(pkg.repository.url)
process.stdout.write(JSON.stringify(output) + '\n')
}
}
main(process.argv.slice(2))