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

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathan Fritz <fritzy@github.com>2022-05-10 20:00:36 +0300
committerNathan Fritz <fritzy@github.com>2022-05-19 01:13:47 +0300
commit8898710220a3d84b0a9ea2a6d9cf880e50b94c9e (patch)
tree73f78c5c87498417ebdc2014481b7155006c1100 /docs/content
parent8a49e3ab6499c6196c5d7a0f6dad3b345944b992 (diff)
feat: deprecated set-script, birthday, --global, and --local
Diffstat (limited to 'docs/content')
-rw-r--r--docs/content/commands/npm-bin.md2
-rw-r--r--docs/content/commands/npm-config.md11
-rw-r--r--docs/content/commands/npm-diff.md2
-rw-r--r--docs/content/commands/npm-install-test.md2
-rw-r--r--docs/content/commands/npm-install.md2
-rw-r--r--docs/content/commands/npm-link.md2
-rw-r--r--docs/content/commands/npm-ls.md2
-rw-r--r--docs/content/commands/npm-outdated.md2
-rw-r--r--docs/content/commands/npm-prefix.md2
-rw-r--r--docs/content/commands/npm-rebuild.md2
-rw-r--r--docs/content/commands/npm-root.md2
-rw-r--r--docs/content/commands/npm-set-script.md2
-rw-r--r--docs/content/commands/npm-update.md2
-rw-r--r--docs/content/using-npm/config.md45
14 files changed, 63 insertions, 17 deletions
diff --git a/docs/content/commands/npm-bin.md b/docs/content/commands/npm-bin.md
index 94b72cfd5..b344ea2fc 100644
--- a/docs/content/commands/npm-bin.md
+++ b/docs/content/commands/npm-bin.md
@@ -34,6 +34,8 @@ Print the folder where npm will install executables.
* Default: false
* Type: Boolean
+* DEPRECATED: `--global`, `--local` are deprecated. Use `--location=global`
+ instead.
Operates in "global" mode, so that packages are installed into the `prefix`
folder instead of the current working directory. See
diff --git a/docs/content/commands/npm-config.md b/docs/content/commands/npm-config.md
index a66a198ce..809e42a1b 100644
--- a/docs/content/commands/npm-config.md
+++ b/docs/content/commands/npm-config.md
@@ -124,6 +124,8 @@ Not supported by all npm commands.
* Default: false
* Type: Boolean
+* DEPRECATED: `--global`, `--local` are deprecated. Use `--location=global`
+ instead.
Operates in "global" mode, so that packages are installed into the `prefix`
folder instead of the current working directory. See
@@ -156,6 +158,15 @@ The command to run for `npm edit` and `npm config edit`.
When passed to `npm config` this refers to which config file to use.
+When set to "global" mode, 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`
+
<!-- automatically generated, do not edit manually -->
<!-- see lib/utils/config/definitions.js -->
diff --git a/docs/content/commands/npm-diff.md b/docs/content/commands/npm-diff.md
index 7dcc8af7c..7183e4a2b 100644
--- a/docs/content/commands/npm-diff.md
+++ b/docs/content/commands/npm-diff.md
@@ -248,6 +248,8 @@ Treat all files as text in `npm diff`.
* Default: false
* Type: Boolean
+* DEPRECATED: `--global`, `--local` are deprecated. Use `--location=global`
+ instead.
Operates in "global" mode, so that packages are installed into the `prefix`
folder instead of the current working directory. See
diff --git a/docs/content/commands/npm-install-test.md b/docs/content/commands/npm-install-test.md
index 3dd860ea5..18e374869 100644
--- a/docs/content/commands/npm-install-test.md
+++ b/docs/content/commands/npm-install-test.md
@@ -70,6 +70,8 @@ rather than using npm's default semver range operator.
* Default: false
* Type: Boolean
+* DEPRECATED: `--global`, `--local` are deprecated. Use `--location=global`
+ instead.
Operates in "global" mode, so that packages are installed into the `prefix`
folder instead of the current working directory. See
diff --git a/docs/content/commands/npm-install.md b/docs/content/commands/npm-install.md
index 445772f03..f99fcc016 100644
--- a/docs/content/commands/npm-install.md
+++ b/docs/content/commands/npm-install.md
@@ -460,6 +460,8 @@ rather than using npm's default semver range operator.
* Default: false
* Type: Boolean
+* DEPRECATED: `--global`, `--local` are deprecated. Use `--location=global`
+ instead.
Operates in "global" mode, so that packages are installed into the `prefix`
folder instead of the current working directory. See
diff --git a/docs/content/commands/npm-link.md b/docs/content/commands/npm-link.md
index 975c807c3..34c67aa3d 100644
--- a/docs/content/commands/npm-link.md
+++ b/docs/content/commands/npm-link.md
@@ -153,6 +153,8 @@ rather than using npm's default semver range operator.
* Default: false
* Type: Boolean
+* DEPRECATED: `--global`, `--local` are deprecated. Use `--location=global`
+ instead.
Operates in "global" mode, so that packages are installed into the `prefix`
folder instead of the current working directory. See
diff --git a/docs/content/commands/npm-ls.md b/docs/content/commands/npm-ls.md
index ded8c0c0d..5ad4593bf 100644
--- a/docs/content/commands/npm-ls.md
+++ b/docs/content/commands/npm-ls.md
@@ -137,6 +137,8 @@ Output parseable results from commands that write to standard output. For
* Default: false
* Type: Boolean
+* DEPRECATED: `--global`, `--local` are deprecated. Use `--location=global`
+ instead.
Operates in "global" mode, so that packages are installed into the `prefix`
folder instead of the current working directory. See
diff --git a/docs/content/commands/npm-outdated.md b/docs/content/commands/npm-outdated.md
index 6fa026550..1bf2de039 100644
--- a/docs/content/commands/npm-outdated.md
+++ b/docs/content/commands/npm-outdated.md
@@ -150,6 +150,8 @@ Output parseable results from commands that write to standard output. For
* Default: false
* Type: Boolean
+* DEPRECATED: `--global`, `--local` are deprecated. Use `--location=global`
+ instead.
Operates in "global" mode, so that packages are installed into the `prefix`
folder instead of the current working directory. See
diff --git a/docs/content/commands/npm-prefix.md b/docs/content/commands/npm-prefix.md
index 39328bcc8..6f08e43fa 100644
--- a/docs/content/commands/npm-prefix.md
+++ b/docs/content/commands/npm-prefix.md
@@ -51,6 +51,8 @@ npm prefix -g
* Default: false
* Type: Boolean
+* DEPRECATED: `--global`, `--local` are deprecated. Use `--location=global`
+ instead.
Operates in "global" mode, so that packages are installed into the `prefix`
folder instead of the current working directory. See
diff --git a/docs/content/commands/npm-rebuild.md b/docs/content/commands/npm-rebuild.md
index 52c368c8c..fa5b0cfa9 100644
--- a/docs/content/commands/npm-rebuild.md
+++ b/docs/content/commands/npm-rebuild.md
@@ -42,6 +42,8 @@ will be rebuilt.
* Default: false
* Type: Boolean
+* DEPRECATED: `--global`, `--local` are deprecated. Use `--location=global`
+ instead.
Operates in "global" mode, so that packages are installed into the `prefix`
folder instead of the current working directory. See
diff --git a/docs/content/commands/npm-root.md b/docs/content/commands/npm-root.md
index 40b58e4b3..80545235f 100644
--- a/docs/content/commands/npm-root.md
+++ b/docs/content/commands/npm-root.md
@@ -41,6 +41,8 @@ echo "Global packages installed in: ${global_node_modules}"
* Default: false
* Type: Boolean
+* DEPRECATED: `--global`, `--local` are deprecated. Use `--location=global`
+ instead.
Operates in "global" mode, so that packages are installed into the `prefix`
folder instead of the current working directory. See
diff --git a/docs/content/commands/npm-set-script.md b/docs/content/commands/npm-set-script.md
index 0fc267f76..8695b43f1 100644
--- a/docs/content/commands/npm-set-script.md
+++ b/docs/content/commands/npm-set-script.md
@@ -7,6 +7,8 @@ description: Set tasks in the scripts section of package.json
### Synopsis
An npm command that lets you create a task in the `scripts` section of the `package.json`.
+Deprecated.
+
<!-- AUTOGENERATED USAGE DESCRIPTIONS START -->
<!-- automatically generated, do not edit manually -->
<!-- see lib/commands/set-script.js -->
diff --git a/docs/content/commands/npm-update.md b/docs/content/commands/npm-update.md
index 421d04ca3..55aad182f 100644
--- a/docs/content/commands/npm-update.md
+++ b/docs/content/commands/npm-update.md
@@ -188,6 +188,8 @@ Will also prevent writing to `package-lock.json` if set to `false`.
* Default: false
* Type: Boolean
+* DEPRECATED: `--global`, `--local` are deprecated. Use `--location=global`
+ instead.
Operates in "global" mode, so that packages are installed into the `prefix`
folder instead of the current working directory. See
diff --git a/docs/content/using-npm/config.md b/docs/content/using-npm/config.md
index a33e791bb..12b508582 100644
--- a/docs/content/using-npm/config.md
+++ b/docs/content/using-npm/config.md
@@ -687,23 +687,6 @@ results in no commit being made at all.
<!-- automatically generated, do not edit manually -->
<!-- see lib/utils/config/definitions.js -->
-#### `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`
-
-<!-- automatically generated, do not edit manually -->
-<!-- see lib/utils/config/definitions.js -->
-
#### `global-style`
* Default: false
@@ -1001,6 +984,15 @@ npm registry. Must be IPv4 in versions of Node prior to 0.12.
When passed to `npm config` this refers to which config file to use.
+When set to "global" mode, 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`
+
<!-- automatically generated, do not edit manually -->
<!-- see lib/utils/config/definitions.js -->
@@ -1941,6 +1933,25 @@ Alias for `--include=dev`.
<!-- automatically generated, do not edit manually -->
<!-- see lib/utils/config/definitions.js -->
+#### `global`
+
+* Default: false
+* Type: Boolean
+* DEPRECATED: `--global`, `--local` are deprecated. Use `--location=global`
+ instead.
+
+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`
+
+<!-- automatically generated, do not edit manually -->
+<!-- see lib/utils/config/definitions.js -->
+
#### `init.author.email`
* Default: ""