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

build.js « lib « docs - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ecde55ab14755aa0e4d110e0b12d6e73471197f1 (plain)
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
const { join, dirname, basename, extname, sep, posix } = require('path')
const fs = require('fs/promises')
const ignoreWalk = require('ignore-walk')
const yaml = require('yaml')
const parseFrontMatter = require('front-matter')
const mdx = require('@mdx-js/mdx')

const checkNav = require('./check-nav.js')
const { DOC_EXT, ...transform } = require('./index.js')

const mkDirs = async (paths) => {
  const uniqDirs = [...new Set(paths.map((p) => dirname(p)))]
  return Promise.all(uniqDirs.map((d) => fs.mkdir(d, { recursive: true })))
}

const rmAll = (...dirs) => Promise.all(dirs.map((d) => fs.rm(d, { recursive: true, force: true })))
const readDocs = (path) => ignoreWalk({ path }).then(ps => ps.filter(p => extname(p) === DOC_EXT))
const readMd = (path) => fs.readFile(path, 'utf-8').then(parseFrontMatter)
const readHtml = (path) => fs.readFile(path, 'utf-8')
const readYaml = (path) => fs.readFile(path, 'utf-8').then(yaml.parse)
const makeTransforms = (...args) => (src, trs) => trs.reduce((acc, tr) => tr(acc, ...args), src)

const run = async ({ content, verify, template, nav, man, html, md }) => {
  const [contentPaths, templateFile, navFile] = await Promise.all([
    readDocs(content),
    readHtml(template),
    readYaml(nav),
    rmAll(man, html, md),
  ])

  const sources = await Promise.all(contentPaths.map(async (childPath) => {
    const name = basename(childPath, DOC_EXT)
    const fullPath = join(content, childPath)
    const fullName = join(dirname(childPath), name).split(sep).join(posix.sep)

    const { body, attributes: data, frontmatter } = await readMd(fullPath)

    return {
      body,
      data,
      frontmatter,
      name,
      fullName,
      childPath,
    }
  }))

  const entriesByType = sources.reduce((acc, {
    body,
    data,
    frontmatter,
    name,
    childPath,
    fullName,
  }) => {
    const applyTransforms = makeTransforms({
      path: childPath,
      data: {
        ...data,
        github_repo: 'npm/cli',
        github_branch: 'latest',
        github_path: 'docs/content',
      },
      frontmatter,
      template: templateFile,
    })

    const transformedSrc = applyTransforms(body, [
      transform.version,
      ...(fullName.startsWith('commands/')
        ? [transform.usage, transform.params]
        : []),
      ...(fullName === 'using-npm/config'
        ? [transform.shorthands, transform.config]
        : []),
    ])

    if (data.section) {
      const manSrc = applyTransforms(transformedSrc, [
        transform.helpLinks,
        transform.man,
      ])
      const manPaths = [
        name,
        fullName === 'configuring-npm/package-json' && 'npm-json',
        fullName === 'configuring-npm/folders' && 'npm-global',
      ].filter(Boolean).map(p => applyTransforms(p, [transform.manPath]))

      acc.man.push(...manPaths.map((manPath) => ({
        path: manPath,
        fullPath: join(man, manPath),
        src: manSrc,
      })))
    }

    acc.html.push({
      path: `${fullName}.html`,
      fullPath: join(html, `${fullName}.html`),
      src: applyTransforms(transformedSrc, [transform.html]),
    })

    acc.md.push({
      path: childPath,
      fullPath: join(md, childPath),
      src: applyTransforms(transformedSrc, [transform.md]),
    })
    return acc
  }, { man: [], html: [], md: [] })

  const docEntries = Object.values(entriesByType).flat()
  await mkDirs(docEntries.map(({ fullPath }) => fullPath))
  await Promise.all(docEntries.map(({ fullPath, src }) => fs.writeFile(fullPath, src, 'utf-8')))

  checkNav(navFile, entriesByType.md.map(({ path }) => path), DOC_EXT)

  if (verify) {
    await Promise.all(entriesByType.md.map(async ({ src }) => {
      // Test that mdx can parse this markdown file.  We don't actually
      // use the output, it's just to ensure that the upstream docs
      // site (docs.npmjs.com) can parse it when this file gets there.
      await mdx(src, { skipExport: true })
    }))
  }

  return docEntries
}

module.exports = run