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

build.js « bin « docs - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 80ce0a63490ff1790d4a92bde9249bea4c238a34 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
const run = require('../lib/build.js')
const { paths } = require('../lib/index')

run({
  verify: true,
  ...paths,
})
  .then((res) => console.log(`Wrote ${res.length} files`))
  .catch((err) => {
    process.exitCode = 1
    console.error(err)
  })