2011-11-22 01:48:45 +08:00
|
|
|
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`.
|
|
|
|
|
2015-05-22 15:14:39 +08:00
|
|
|
It should generally be called during installation, but if you need to run it
|
|
|
|
directly, run:
|
|
|
|
|
|
|
|
npm run-script build
|
2011-11-22 01:48:45 +08:00
|
|
|
|
|
|
|
## SEE ALSO
|
|
|
|
|
|
|
|
* npm-install(1)
|
|
|
|
* npm-link(1)
|
2013-07-12 23:56:59 +08:00
|
|
|
* npm-scripts(7)
|
|
|
|
* package.json(5)
|