summaryrefslogtreecommitdiff
path: root/deps/npm/docs/content/commands/npm-install-ci-test.md
diff options
context:
space:
mode:
Diffstat (limited to 'deps/npm/docs/content/commands/npm-install-ci-test.md')
-rw-r--r--deps/npm/docs/content/commands/npm-install-ci-test.md34
1 files changed, 0 insertions, 34 deletions
diff --git a/deps/npm/docs/content/commands/npm-install-ci-test.md b/deps/npm/docs/content/commands/npm-install-ci-test.md
index 5a8095787a..c5fe98be70 100644
--- a/deps/npm/docs/content/commands/npm-install-ci-test.md
+++ b/deps/npm/docs/content/commands/npm-install-ci-test.md
@@ -18,40 +18,6 @@ This command runs `npm ci` followed immediately by `npm test`.
### Configuration
-#### `save`
-
-* Default: `true` unless when using `npm update` where it defaults to `false`
-* Type: Boolean
-
-Save installed packages to a `package.json` file as dependencies.
-
-When used with the `npm rm` command, removes the dependency from
-`package.json`.
-
-Will also prevent writing to `package-lock.json` if set to `false`.
-
-#### `save-exact`
-
-* Default: false
-* Type: Boolean
-
-Dependencies saved to package.json will be configured with an exact version
-rather than using npm's default semver range operator.
-
-#### `global`
-
-* Default: false
-* Type: Boolean
-
-Operates in "global" mode, so that packages are installed into the `prefix`
-folder instead of the current working directory. See
-[folders](/configuring-npm/folders) for more on the differences in behavior.
-
-* packages are installed into the `{prefix}/lib/node_modules` folder, instead
- of the current working directory.
-* bin files are linked to `{prefix}/bin`
-* man pages are linked to `{prefix}/share/man`
-
#### `install-strategy`
* Default: "hoisted"