summaryrefslogtreecommitdiff
path: root/deps/npm/doc/cli/npm-build.md
blob: 4d3467a160dd0c9143590bf079501f7e67981727 (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
npm-build(1) -- Build a package
===============================

## SYNOPSIS

    npm build <package-folder>

* `<package-folder>`:
  A folder containing a `package.json` file in its root.

## DESCRIPTION

This is the plumbing command called by `npm link` and `npm install`.

It should generally be called during installation, but if you need to run it
directly, run:

    npm run-script build

## SEE ALSO

* npm-install(1)
* npm-link(1)
* npm-scripts(7)
* package.json(5)