Skip to content

Latest commit

 

History

History
executable file
·
34 lines (25 loc) · 645 Bytes

npm-build.md

File metadata and controls

executable file
·
34 lines (25 loc) · 645 Bytes
section title description
cli-commands
npm-build
Build a package

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