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

build.md « doc - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4e11efb77ed65973143f2d19ac4ef4a744274de1 (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 command should almost never need to be run directly.  It is an abstraction
of the functionality shared by both npm-install(1) and npm-link(1).

This command creates the various interwoven links that ensure a package's contents
are available in the root appropriately, and that its dependencies are linked
appropriately.

## SEE ALSO

* npm-install(1)
* npm-link(1)
* npm-scripts(1)
* npm-json(1)