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: 5f8144a8e8e25e640559d7093c2b06844b94520c (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
26
27
28
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.

## CONFIGURATION


## SEE ALSO

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