• Home
  • Raw
  • Download

Lines Matching full:install

4 description: Clean install a project
12 aliases: clean-install, ic, install-clean, isntall-clean
17 This command is similar to [`npm install`](/commands/npm-install), except
20 to make sure you're doing a clean install of your dependencies.
22 The main differences between using `npm install` and `npm ci` are:
28 * `npm ci` can only install entire projects at a time: individual
31 before `npm ci` begins its install.
35 NOTE: If you create your `package-lock.json` file by running `npm install`
37 `--legacy-peer-deps` or `--install-links`, you _must_ provide the same
45 Make sure you have a package-lock and an up-to-date install:
49 $ npm install
61 Configure Travis CI to build using `npm ci` instead of `npm install`:
65 install:
75 #### `install-strategy`
81 (default): Install non-duplicated in top-level, and duplicated as necessary
82 within directory structure. nested: (formerly --legacy-bundling) install in
83 place, no hoisting. shallow (formerly --global-style) only install direct
84 deps at top-level. linked: (experimental) install in node_modules/.store,
94 `--install-strategy=nested`
96 Instead of hoisting package installs in `node_modules`, install packages in
99 de-duplicating. Sets `--install-strategy=nested`.
108 `--install-strategy=shallow`
110 Only install direct dependencies in the top level `node_modules`, but hoist
111 on deeper dependencies. Sets `--install-strategy=shallow`.
140 Option that allows for defining which types of dependencies to install.
155 conflicting `peerDependencies` will be treated as an install failure, even
176 Run all build scripts (ie, `preinstall`, `install`, and `postinstall`)
230 When "true" displays the message at the end of each `npm install`
243 commands that modify your local installation, eg, `install`, `update`,
281 Explicitly setting this to false will cause commands like `install` to
284 - Commands that operate on the `node_modules` tree (install, update, etc.)
304 #### `install-links`
317 * [npm install](/commands/npm-install)