fix: generate discoverable redirects for all `/cli` paths (#242)
This takes the old redirects and adds logic so that all possible redirects are created for all releases. Generally redirects should be discoverable, so that if `/cli/audit` redirects to `/cli/v8/commands/npm-audit`, then the following redirects should also work: - `/cli/npm-audit` - `/cli/commands/audit` - `/cli/v8/commands/audit` - etc And for redirects that contain a version id, they should also work for non-default versions such as `/cli/v8/commands/audit` redirecting to `/cli/v7/commands/npm-audit`.
Luke Karrys committed
Oct 12, 2022 at 21:13 UTC
2f7f975e6f6d2a73230223696c64f0e9b108d03b
253 files changed
+3622
-246
cli/lib/build.js
+1
@@ -73,6 +73,7 @@ const main = async ({
73
src: release.src?.split(posix.sep).join(sep) || defaultBuiltDir,
74
url: `/${DOCS_PATH}/${release.id}`,
75
urlPrefix: DOCS_PATH,
76
+ urlPrefixes: [DOCS_PATH, `${DOCS_PATH}-documentation`],
77
}))
78
79
const baseNav = await fs.readFile(navPath, 'utf-8')
cli/lib/redirects.js
+76
-61
@@ -1,72 +1,87 @@
1
-// TODO: many of these redirects can be simplified now that
2
-// they are looked up using minimatch.
3
-module.exports = Object.entries({
4
- // indexes
5
- index: ['/cli', '/cli-documentation'],
6
- '*/index': ({ section }) => [`/${section}`, `/cli/${section}`],
7
- // commands
8
- 'commands/!(index|npx)': ({ section, page }) => {
9
- const command = page.replace(/^npm-/, '')
10
- return [
11
- `/cli/${command}`,
12
- `/cli/${command}.html`,
13
- `/cli/${section}/${command}`,
14
- `/cli-${section}/${page}`,
15
- `/cli-${section}/${command}`,
16
- `/cli-${section}/${command}.html`,
17
- ]
18
- },
19
- 'commands/index': [
20
- '/cli-documentation/cli',
21
- '/cli-documentation/cli-commands',
1
+const { posix: { join } } = require('path')
2
+
3
+// An object to generate redirects for a given path.
4
+// The key is a glob path that is matched by minimatch,
5
+// and the value is a function that is passed a parsed
6
+// path with { section, page, release }.
7
+//
8
+// Return an absolute path to bypass the normal /cli/
9
+// folder prefix to the redirect path. These will only
10
+// be applied for the default release or if an object
11
+// with `default: true` is also returned.
12
+//
13
+// The order of the keys is important because the result of
14
+// one redirect can generate other redirects if they match
15
+// one of the remaining globs. So keys should be ordered
16
+// from the least specific -> most specific. Note that this
17
+// order is reversed when actually parsing the object and
18
+// running the code so it works properly.
19
+//
20
+// For example: path -> configuring-npm/package-lock-json
21
+// This will first match: configuring-npm/*
22
+// which will generate the redirects files/package-lock-json
23
+// Later this will match: **/*-json*
24
+// So both redirects from: configuring-npm/package-lock.json
25
+// and files/package-lock.json will also be created.
26
+//
27
+// Note that all redirects are deduped later so it is safe
28
+// if a path creates multiple idential redirects. Gatsby
29
+// will also warn (but not create them) if multiple pages
30
+// redirect to the same or already exsiting paths.
31
+
32
+module.exports = {
33
+ index: () => ['.'],
34
+ '*/!(index)': ({ section, page }) => [
35
+ join(section, page),
36
+ join('/', section, page),
37
],
23
- 'commands/npm-access': ['/cli-documentation/access'],
24
- 'commands/npm-install': ['/cli-documentation/install'],
25
- // configuring npm
26
- 'configuring-npm/!(index)': ({ section, page }) => [
27
- `/${section}/${page}`,
28
- `/${section}/${page}.html`,
38
+ '*/index': ({ section, page }) => [
39
+ join(section),
40
+ join('/', section),
41
+ join(section, page),
42
+ join('/', section, page),
43
+ ],
44
+
45
+ // any page with `-json` -> `.json`
46
+ '**/*-json*': ({ section, page }) => [
47
+ join(section, page.replace(/-json/g, '.json')),
48
],
30
- 'configuring-npm/index': [
31
- '/cli-documentation/configuring-npm',
32
- '/cli-documentation/files',
49
+
50
+ // commands
51
+ 'commands/!(index)': ({ page }) => [
52
+ page,
53
],
34
- 'configuring-npm/folders': ['/files/folders', '/files/folders.html'],
35
- 'configuring-npm/npmrc': [
36
- '/cli-documentation/files/npmrc',
37
- '/files/npmrc',
38
- '/files/npmrc.html',
54
+ 'commands/index': () => [
55
+ '/cli-documentation/cli',
56
],
40
- 'configuring-npm/package-json': [
41
- '/configuring-npm/package.json',
42
- '/creating-a-packge-json-file',
43
- '/files/package.json',
44
- '/files/package.json.html',
57
+ 'commands/*': ({ page }) => [
58
+ join('cli-commands', page),
59
+ join('/', 'cli-commands', page),
60
],
46
- 'configuring-npm/package-lock-json': [
47
- '/files/package-lock.json',
48
- '/files/package-lock.json.html',
61
+ 'commands/npm-*': ({ section, page }) => [
62
+ join(section, page.replace(/^npm-/, '')),
63
],
50
- 'configuring-npm/package-locks': [
51
- '/files/package-locks',
52
- '/files/package-locks.html',
64
+
65
+ // configuring npm
66
+ 'configuring-npm/*': ({ page }) => [
67
+ join('files', page),
68
+ join('/', 'files', page),
69
],
54
- 'configuring-npm/shrinkwrap-json': [
55
- '/files/shrinkwrap.json',
56
- '/files/shrinkwrap.json.html',
70
+ 'configuring-npm/package-locks': ({ section, page, release }) => [
71
+ // A special case for a path that was deleted in v7, but we still
72
+ // want the old v6 default url to resolve.
73
+ { path: join('/', section, page), default: release.id === 'v6' },
74
],
75
+
76
// using npm
59
- 'using-npm/!(index)': ({ section, page }) => [
60
- `/${section}/${page}`,
61
- `/${section}/${page}.html`,
62
- `/misc/${page}`,
63
- `/misc/${page}.html`,
77
+ 'using-npm/*': ({ page }) => [
78
+ join('misc', page),
79
+ join('/', 'misc', page),
80
+ ],
81
+ 'using-npm/removal': ({ section }) => [
82
+ join(section, 'removing-npm'),
83
],
65
- 'using-npm/index': [
66
- '/cli-documentation/misc',
67
- '/cli-documentation/using-npm',
68
- '/misc/index.html',
84
+ 'using-npm/scope': ({ section }) => [
85
+ join(section, 'npm-scope'),
86
],
70
- 'using-npm/removal': ['/misc/removing-npm', '/misc/removing-npm.html'],
71
- 'using-npm/scope': ['/using-npm/npm-scope'],
72
-})
87
+}
cli/lib/transform.js
+51
-19
@@ -2,31 +2,63 @@ const parseFm = require('front-matter')
2
const Minipass = require('minipass')
3
const yaml = require('yaml')
4
const minimatch = require('minimatch')
5
-const { sep, extname, join, posix } = require('path')
5
+const { sep, join, posix, isAbsolute } = require('path')
6
const gh = require('./gh')
7
-const redirectsMap = require('./redirects')
7
+const rawRedirects = require('./redirects')
8
9
-const getRedirects = ({ path: _path, release }) => {
10
- if (!release.default) {
11
- return []
9
+const getPathParts = (path) => {
10
+ const abs = isAbsolute(path)
11
+ const paths = path.replace(/\.mdx?$/, '').split(sep)
12
+
13
+ const pathId = posix.join(abs ? '/' : '', ...paths)
14
+ const page = posix.basename(pathId)
15
+ const section = posix.dirname(pathId)
16
+
17
+ return {
18
+ path: pathId,
19
+ page,
20
+ section: section === '.' ? '' : section,
21
+ }
22
+}
23
+
24
+const getRedirects = ({ path, release }) => {
25
+ const redirects = [getPathParts(path)]
26
+ const [pagePath] = redirects
27
+ const canonical = posix.join(
28
+ release.url,
29
+ pagePath.section,
30
+ pagePath.page === 'index' ? '' : pagePath.page
31
+ )
32
+
33
+ for (const [k, v] of Object.entries(rawRedirects).reverse()) {
34
+ const pageRedirects = redirects.flatMap(redirect => {
35
+ if (minimatch(redirect.path, k)) {
36
+ return v({ ...getPathParts(redirect.path), release }).map(p => ({
37
+ ...redirect,
38
+ ...typeof p === 'object' ? p : { path: p },
39
+ }))
40
+ }
41
+ })
42
+ redirects.push(...pageRedirects.filter(Boolean))
43
}
44
14
- const paths = _path.replace(new RegExp(`\\${extname(_path)}$`), '').split(sep)
15
- const path = posix.join(...paths)
16
- const section = paths.length === 1 ? '' : posix.dirname(path)
17
- const page = paths.length === 1 ? 'index' : posix.basename(path)
18
-
19
- const redirects = redirectsMap
20
- .filter(([k]) => minimatch(path, k))
21
- .flatMap(([, pageRedirects]) => {
22
- return [].concat(
23
- typeof pageRedirects === 'function'
24
- ? pageRedirects({ section, page })
25
- : pageRedirects
26
- )
45
+ const prefixRedirects = redirects
46
+ .flatMap(redirect => {
47
+ const useDefault = redirect.default || release.default
48
+ if (isAbsolute(redirect.path)) {
49
+ return useDefault ? redirect.path : null
50
+ } else {
51
+ return release.urlPrefixes.flatMap(p => [
52
+ posix.join('/', p, release.id, redirect.path),
53
+ useDefault ? posix.join('/', p, redirect.path) : null,
54
+ ])
55
+ }
56
})
57
+ .filter(Boolean)
58
+ .filter(r => r !== canonical)
59
29
- return [...new Set(redirects)].sort((a, b) => a.localeCompare(b, 'en'))
60
+ return [...new Set(prefixRedirects)]
61
+ .sort((a, b) => a.localeCompare(b, 'en'))
62
}
63
64
const transform = (data, { release, path, frontmatter }) => {
cli/test/transform.js
new
+90
@@ -0,0 +1,90 @@
1
+const t = require('tap')
2
+const fm = require('front-matter')
3
+const Transform = require('../lib/transform')
4
+
5
+const transform = ({ id, path }) => {
6
+ const transformed = Transform.sync('---\n---\n', {
7
+ release: {
8
+ id: id,
9
+ default: id === 'v8',
10
+ src: 'docs/content',
11
+ url: `/cli/${id}/${path}`,
12
+ urlPrefixes: ['/cli'],
13
+ },
14
+ path,
15
+ })
16
+ return fm(transformed).attributes
17
+}
18
+
19
+t.test('v6 default page', async t => {
20
+ const v6 = transform({ id: 'v6', path: 'configuring-npm/package-locks' })
21
+ const v7 = transform({ id: 'v7', path: 'configuring-npm/package-locks' })
22
+
23
+ t.strictSame(v6.redirect_from, [
24
+ '/cli/v6/configuring-npm/package-locks',
25
+ '/cli/v6/files/package-locks',
26
+ '/configuring-npm/package-locks',
27
+ ])
28
+ t.strictSame(v7.redirect_from, [
29
+ '/cli/v7/configuring-npm/package-locks',
30
+ '/cli/v7/files/package-locks',
31
+ ])
32
+})
33
+
34
+t.test('command', async t => {
35
+ const v7 = transform({ id: 'v7', path: 'commands/npm-bin' })
36
+ const v8 = transform({ id: 'v8', path: 'commands/npm-bin' })
37
+
38
+ t.strictSame(v7.redirect_from, [
39
+ '/cli/v7/bin',
40
+ '/cli/v7/cli-commands/bin',
41
+ '/cli/v7/cli-commands/npm-bin',
42
+ '/cli/v7/commands/bin',
43
+ '/cli/v7/commands/npm-bin',
44
+ '/cli/v7/npm-bin',
45
+ ])
46
+ t.strictSame(v8.redirect_from, [
47
+ '/cli-commands/bin',
48
+ '/cli-commands/npm-bin',
49
+ '/cli/bin',
50
+ '/cli/cli-commands/bin',
51
+ '/cli/cli-commands/npm-bin',
52
+ '/cli/commands/bin',
53
+ '/cli/commands/npm-bin',
54
+ '/cli/npm-bin',
55
+ '/cli/v8/bin',
56
+ '/cli/v8/cli-commands/bin',
57
+ '/cli/v8/cli-commands/npm-bin',
58
+ '/cli/v8/commands/bin',
59
+ '/cli/v8/commands/npm-bin',
60
+ '/cli/v8/npm-bin',
61
+ '/commands/bin',
62
+ '/commands/npm-bin',
63
+ ])
64
+})
65
+
66
+t.test('package-json files', async t => {
67
+ const v7 = transform({ id: 'v7', path: 'configuring-npm/package-json' })
68
+ const v8 = transform({ id: 'v8', path: 'configuring-npm/package-json' })
69
+
70
+ t.strictSame(v7.redirect_from, [
71
+ '/cli/v7/configuring-npm/package-json',
72
+ '/cli/v7/configuring-npm/package.json',
73
+ '/cli/v7/files/package-json',
74
+ '/cli/v7/files/package.json',
75
+ ])
76
+ t.strictSame(v8.redirect_from, [
77
+ '/cli/configuring-npm/package-json',
78
+ '/cli/configuring-npm/package.json',
79
+ '/cli/files/package-json',
80
+ '/cli/files/package.json',
81
+ '/cli/v8/configuring-npm/package-json',
82
+ '/cli/v8/configuring-npm/package.json',
83
+ '/cli/v8/files/package-json',
84
+ '/cli/v8/files/package.json',
85
+ '/configuring-npm/package-json',
86
+ '/configuring-npm/package.json',
87
+ '/files/package-json',
88
+ '/files/package.json',
89
+ ])
90
+})
content/cli/v6/commands/index.mdx
+8
@@ -3,6 +3,14 @@ title: CLI Commands
3
github_repo: npm/cli
4
github_branch: v6
5
github_path: docs/nav.yml
6
+redirect_from:
7
+ - /cli-documentation/v6/cli-commands
8
+ - /cli-documentation/v6/cli-commands/index
9
+ - /cli-documentation/v6/commands
10
+ - /cli-documentation/v6/commands/index
11
+ - /cli/v6/cli-commands
12
+ - /cli/v6/cli-commands/index
13
+ - /cli/v6/commands/index
14
---
15
16
<Index depth="1" />
content/cli/v6/commands/npm-access.md
+12
@@ -5,6 +5,18 @@ description: Set access level on published packages
5
github_repo: npm/cli
6
github_branch: v6
7
github_path: docs/content/commands/npm-access.md
8
+redirect_from:
9
+ - /cli-documentation/v6/access
10
+ - /cli-documentation/v6/cli-commands/access
11
+ - /cli-documentation/v6/cli-commands/npm-access
12
+ - /cli-documentation/v6/commands/access
13
+ - /cli-documentation/v6/commands/npm-access
14
+ - /cli-documentation/v6/npm-access
15
+ - /cli/v6/access
16
+ - /cli/v6/cli-commands/access
17
+ - /cli/v6/cli-commands/npm-access
18
+ - /cli/v6/commands/access
19
+ - /cli/v6/npm-access
20
---
21
22
### Synopsis
content/cli/v6/commands/npm-adduser.md
+12
@@ -5,6 +5,18 @@ description: Add a registry user account
5
github_repo: npm/cli
6
github_branch: v6
7
github_path: docs/content/commands/npm-adduser.md
8
+redirect_from:
9
+ - /cli-documentation/v6/adduser
10
+ - /cli-documentation/v6/cli-commands/adduser
11
+ - /cli-documentation/v6/cli-commands/npm-adduser
12
+ - /cli-documentation/v6/commands/adduser
13
+ - /cli-documentation/v6/commands/npm-adduser
14
+ - /cli-documentation/v6/npm-adduser
15
+ - /cli/v6/adduser
16
+ - /cli/v6/cli-commands/adduser
17
+ - /cli/v6/cli-commands/npm-adduser
18
+ - /cli/v6/commands/adduser
19
+ - /cli/v6/npm-adduser
20
---
21
22
### Synopsis
content/cli/v6/commands/npm-audit.md
+12
@@ -5,6 +5,18 @@ description: Run a security audit
5
github_repo: npm/cli
6
github_branch: v6
7
github_path: docs/content/commands/npm-audit.md
8
+redirect_from:
9
+ - /cli-documentation/v6/audit
10
+ - /cli-documentation/v6/cli-commands/audit
11
+ - /cli-documentation/v6/cli-commands/npm-audit
12
+ - /cli-documentation/v6/commands/audit
13
+ - /cli-documentation/v6/commands/npm-audit
14
+ - /cli-documentation/v6/npm-audit
15
+ - /cli/v6/audit
16
+ - /cli/v6/cli-commands/audit
17
+ - /cli/v6/cli-commands/npm-audit
18
+ - /cli/v6/commands/audit
19
+ - /cli/v6/npm-audit
20
---
21
22
### Synopsis
content/cli/v6/commands/npm-bin.md
+12
@@ -5,6 +5,18 @@ description: Display npm bin folder
5
github_repo: npm/cli
6
github_branch: v6
7
github_path: docs/content/commands/npm-bin.md
8
+redirect_from:
9
+ - /cli-documentation/v6/bin
10
+ - /cli-documentation/v6/cli-commands/bin
11
+ - /cli-documentation/v6/cli-commands/npm-bin
12
+ - /cli-documentation/v6/commands/bin
13
+ - /cli-documentation/v6/commands/npm-bin
14
+ - /cli-documentation/v6/npm-bin
15
+ - /cli/v6/bin
16
+ - /cli/v6/cli-commands/bin
17
+ - /cli/v6/cli-commands/npm-bin
18
+ - /cli/v6/commands/bin
19
+ - /cli/v6/npm-bin
20
---
21
22
### Synopsis
content/cli/v6/commands/npm-bugs.md
+12
@@ -5,6 +5,18 @@ description: Bugs for a package in a web browser maybe
5
github_repo: npm/cli
6
github_branch: v6
7
github_path: docs/content/commands/npm-bugs.md
8
+redirect_from:
9
+ - /cli-documentation/v6/bugs
10
+ - /cli-documentation/v6/cli-commands/bugs
11
+ - /cli-documentation/v6/cli-commands/npm-bugs
12
+ - /cli-documentation/v6/commands/bugs
13
+ - /cli-documentation/v6/commands/npm-bugs
14
+ - /cli-documentation/v6/npm-bugs
15
+ - /cli/v6/bugs
16
+ - /cli/v6/cli-commands/bugs
17
+ - /cli/v6/cli-commands/npm-bugs
18
+ - /cli/v6/commands/bugs
19
+ - /cli/v6/npm-bugs
20
---
21
22
### Synopsis
content/cli/v6/commands/npm-build.md
+12
@@ -5,6 +5,18 @@ description: Build a package
5
github_repo: npm/cli
6
github_branch: v6
7
github_path: docs/content/commands/npm-build.md
8
+redirect_from:
9
+ - /cli-documentation/v6/build
10
+ - /cli-documentation/v6/cli-commands/build
11
+ - /cli-documentation/v6/cli-commands/npm-build
12
+ - /cli-documentation/v6/commands/build
13
+ - /cli-documentation/v6/commands/npm-build
14
+ - /cli-documentation/v6/npm-build
15
+ - /cli/v6/build
16
+ - /cli/v6/cli-commands/build
17
+ - /cli/v6/cli-commands/npm-build
18
+ - /cli/v6/commands/build
19
+ - /cli/v6/npm-build
20
---
21
22
### Synopsis
content/cli/v6/commands/npm-bundle.md
+12
@@ -5,6 +5,18 @@ description: REMOVED
5
github_repo: npm/cli
6
github_branch: v6
7
github_path: docs/content/commands/npm-bundle.md
8
+redirect_from:
9
+ - /cli-documentation/v6/bundle
10
+ - /cli-documentation/v6/cli-commands/bundle
11
+ - /cli-documentation/v6/cli-commands/npm-bundle
12
+ - /cli-documentation/v6/commands/bundle
13
+ - /cli-documentation/v6/commands/npm-bundle
14
+ - /cli-documentation/v6/npm-bundle
15
+ - /cli/v6/bundle
16
+ - /cli/v6/cli-commands/bundle
17
+ - /cli/v6/cli-commands/npm-bundle
18
+ - /cli/v6/commands/bundle
19
+ - /cli/v6/npm-bundle
20
---
21
22
### Description
content/cli/v6/commands/npm-cache.md
+12
@@ -5,6 +5,18 @@ description: Manipulates packages cache
5
github_repo: npm/cli
6
github_branch: v6
7
github_path: docs/content/commands/npm-cache.md
8
+redirect_from:
9
+ - /cli-documentation/v6/cache
10
+ - /cli-documentation/v6/cli-commands/cache
11
+ - /cli-documentation/v6/cli-commands/npm-cache
12
+ - /cli-documentation/v6/commands/cache
13
+ - /cli-documentation/v6/commands/npm-cache
14
+ - /cli-documentation/v6/npm-cache
15
+ - /cli/v6/cache
16
+ - /cli/v6/cli-commands/cache
17
+ - /cli/v6/cli-commands/npm-cache
18
+ - /cli/v6/commands/cache
19
+ - /cli/v6/npm-cache
20
---
21
22
### Synopsis
content/cli/v6/commands/npm-ci.md
+12
@@ -5,6 +5,18 @@ description: Install a project with a clean slate
5
github_repo: npm/cli
6
github_branch: v6
7
github_path: docs/content/commands/npm-ci.md
8
+redirect_from:
9
+ - /cli-documentation/v6/ci
10
+ - /cli-documentation/v6/cli-commands/ci
11
+ - /cli-documentation/v6/cli-commands/npm-ci
12
+ - /cli-documentation/v6/commands/ci
13
+ - /cli-documentation/v6/commands/npm-ci
14
+ - /cli-documentation/v6/npm-ci
15
+ - /cli/v6/ci
16
+ - /cli/v6/cli-commands/ci
17
+ - /cli/v6/cli-commands/npm-ci
18
+ - /cli/v6/commands/ci
19
+ - /cli/v6/npm-ci
20
---
21
22
### Synopsis
content/cli/v6/commands/npm-completion.md
+12
@@ -5,6 +5,18 @@ description: Tab Completion for npm
5
github_repo: npm/cli
6
github_branch: v6
7
github_path: docs/content/commands/npm-completion.md
8
+redirect_from:
9
+ - /cli-documentation/v6/cli-commands/completion
10
+ - /cli-documentation/v6/cli-commands/npm-completion
11
+ - /cli-documentation/v6/commands/completion
12
+ - /cli-documentation/v6/commands/npm-completion
13
+ - /cli-documentation/v6/completion
14
+ - /cli-documentation/v6/npm-completion
15
+ - /cli/v6/cli-commands/completion
16
+ - /cli/v6/cli-commands/npm-completion
17
+ - /cli/v6/commands/completion
18
+ - /cli/v6/completion
19
+ - /cli/v6/npm-completion
20
---
21
22
### Synopsis
content/cli/v6/commands/npm-config.md
+12
@@ -5,6 +5,18 @@ description: Manage the npm configuration files
5
github_repo: npm/cli
6
github_branch: v6
7
github_path: docs/content/commands/npm-config.md
8
+redirect_from:
9
+ - /cli-documentation/v6/cli-commands/config
10
+ - /cli-documentation/v6/cli-commands/npm-config
11
+ - /cli-documentation/v6/commands/config
12
+ - /cli-documentation/v6/commands/npm-config
13
+ - /cli-documentation/v6/config
14
+ - /cli-documentation/v6/npm-config
15
+ - /cli/v6/cli-commands/config
16
+ - /cli/v6/cli-commands/npm-config
17
+ - /cli/v6/commands/config
18
+ - /cli/v6/config
19
+ - /cli/v6/npm-config
20
---
21
22
### Synopsis
content/cli/v6/commands/npm-dedupe.md
+12
@@ -5,6 +5,18 @@ description: Reduce duplication
5
github_repo: npm/cli
6
github_branch: v6
7
github_path: docs/content/commands/npm-dedupe.md
8
+redirect_from:
9
+ - /cli-documentation/v6/cli-commands/dedupe
10
+ - /cli-documentation/v6/cli-commands/npm-dedupe
11
+ - /cli-documentation/v6/commands/dedupe
12
+ - /cli-documentation/v6/commands/npm-dedupe
13
+ - /cli-documentation/v6/dedupe
14
+ - /cli-documentation/v6/npm-dedupe
15
+ - /cli/v6/cli-commands/dedupe
16
+ - /cli/v6/cli-commands/npm-dedupe
17
+ - /cli/v6/commands/dedupe
18
+ - /cli/v6/dedupe
19
+ - /cli/v6/npm-dedupe
20
---
21
22
### Synopsis
content/cli/v6/commands/npm-deprecate.md
+12
@@ -5,6 +5,18 @@ description: Deprecate a version of a package
5
github_repo: npm/cli
6
github_branch: v6
7
github_path: docs/content/commands/npm-deprecate.md
8
+redirect_from:
9
+ - /cli-documentation/v6/cli-commands/deprecate
10
+ - /cli-documentation/v6/cli-commands/npm-deprecate
11
+ - /cli-documentation/v6/commands/deprecate
12
+ - /cli-documentation/v6/commands/npm-deprecate
13
+ - /cli-documentation/v6/deprecate
14
+ - /cli-documentation/v6/npm-deprecate
15
+ - /cli/v6/cli-commands/deprecate
16
+ - /cli/v6/cli-commands/npm-deprecate
17
+ - /cli/v6/commands/deprecate
18
+ - /cli/v6/deprecate
19
+ - /cli/v6/npm-deprecate
20
---
21
22
### Synopsis
content/cli/v6/commands/npm-dist-tag.md
+12
@@ -5,6 +5,18 @@ description: Modify package distribution tags
5
github_repo: npm/cli
6
github_branch: v6
7
github_path: docs/content/commands/npm-dist-tag.md
8
+redirect_from:
9
+ - /cli-documentation/v6/cli-commands/dist-tag
10
+ - /cli-documentation/v6/cli-commands/npm-dist-tag
11
+ - /cli-documentation/v6/commands/dist-tag
12
+ - /cli-documentation/v6/commands/npm-dist-tag
13
+ - /cli-documentation/v6/dist-tag
14
+ - /cli-documentation/v6/npm-dist-tag
15
+ - /cli/v6/cli-commands/dist-tag
16
+ - /cli/v6/cli-commands/npm-dist-tag
17
+ - /cli/v6/commands/dist-tag
18
+ - /cli/v6/dist-tag
19
+ - /cli/v6/npm-dist-tag
20
---
21
22
### Synopsis
content/cli/v6/commands/npm-docs.md
+12
@@ -5,6 +5,18 @@ description: Docs for a package in a web browser maybe
5
github_repo: npm/cli
6
github_branch: v6
7
github_path: docs/content/commands/npm-docs.md
8
+redirect_from:
9
+ - /cli-documentation/v6/cli-commands/docs
10
+ - /cli-documentation/v6/cli-commands/npm-docs
11
+ - /cli-documentation/v6/commands/docs
12
+ - /cli-documentation/v6/commands/npm-docs
13
+ - /cli-documentation/v6/docs
14
+ - /cli-documentation/v6/npm-docs
15
+ - /cli/v6/cli-commands/docs
16
+ - /cli/v6/cli-commands/npm-docs
17
+ - /cli/v6/commands/docs
18
+ - /cli/v6/docs
19
+ - /cli/v6/npm-docs
20
---
21
22
### Synopsis
content/cli/v6/commands/npm-doctor.md
+12
@@ -5,6 +5,18 @@ description: Check your environments
5
github_repo: npm/cli
6
github_branch: v6
7
github_path: docs/content/commands/npm-doctor.md
8
+redirect_from:
9
+ - /cli-documentation/v6/cli-commands/doctor
10
+ - /cli-documentation/v6/cli-commands/npm-doctor
11
+ - /cli-documentation/v6/commands/doctor
12
+ - /cli-documentation/v6/commands/npm-doctor
13
+ - /cli-documentation/v6/doctor
14
+ - /cli-documentation/v6/npm-doctor
15
+ - /cli/v6/cli-commands/doctor
16
+ - /cli/v6/cli-commands/npm-doctor
17
+ - /cli/v6/commands/doctor
18
+ - /cli/v6/doctor
19
+ - /cli/v6/npm-doctor
20
---
21
22
### Synopsis
content/cli/v6/commands/npm-edit.md
+12
@@ -5,6 +5,18 @@ description: Edit an installed package
5
github_repo: npm/cli
6
github_branch: v6
7
github_path: docs/content/commands/npm-edit.md
8
+redirect_from:
9
+ - /cli-documentation/v6/cli-commands/edit
10
+ - /cli-documentation/v6/cli-commands/npm-edit
11
+ - /cli-documentation/v6/commands/edit
12
+ - /cli-documentation/v6/commands/npm-edit
13
+ - /cli-documentation/v6/edit
14
+ - /cli-documentation/v6/npm-edit
15
+ - /cli/v6/cli-commands/edit
16
+ - /cli/v6/cli-commands/npm-edit
17
+ - /cli/v6/commands/edit
18
+ - /cli/v6/edit
19
+ - /cli/v6/npm-edit
20
---
21
22
### Synopsis
content/cli/v6/commands/npm-explore.md
+12
@@ -5,6 +5,18 @@ description: Browse an installed package
5
github_repo: npm/cli
6
github_branch: v6
7
github_path: docs/content/commands/npm-explore.md
8
+redirect_from:
9
+ - /cli-documentation/v6/cli-commands/explore
10
+ - /cli-documentation/v6/cli-commands/npm-explore
11
+ - /cli-documentation/v6/commands/explore
12
+ - /cli-documentation/v6/commands/npm-explore
13
+ - /cli-documentation/v6/explore
14
+ - /cli-documentation/v6/npm-explore
15
+ - /cli/v6/cli-commands/explore
16
+ - /cli/v6/cli-commands/npm-explore
17
+ - /cli/v6/commands/explore
18
+ - /cli/v6/explore
19
+ - /cli/v6/npm-explore
20
---
21
22
### Synopsis
content/cli/v6/commands/npm-fund.md
+12
@@ -5,6 +5,18 @@ description: Retrieve funding information
5
github_repo: npm/cli
6
github_branch: v6
7
github_path: docs/content/commands/npm-fund.md
8
+redirect_from:
9
+ - /cli-documentation/v6/cli-commands/fund
10
+ - /cli-documentation/v6/cli-commands/npm-fund
11
+ - /cli-documentation/v6/commands/fund
12
+ - /cli-documentation/v6/commands/npm-fund
13
+ - /cli-documentation/v6/fund
14
+ - /cli-documentation/v6/npm-fund
15
+ - /cli/v6/cli-commands/fund
16
+ - /cli/v6/cli-commands/npm-fund
17
+ - /cli/v6/commands/fund
18
+ - /cli/v6/fund
19
+ - /cli/v6/npm-fund
20
---
21
22
### Synopsis
content/cli/v6/commands/npm-help-search.md
+12
@@ -5,6 +5,18 @@ description: Search npm help documentation
5
github_repo: npm/cli
6
github_branch: v6
7
github_path: docs/content/commands/npm-help-search.md
8
+redirect_from:
9
+ - /cli-documentation/v6/cli-commands/help-search
10
+ - /cli-documentation/v6/cli-commands/npm-help-search
11
+ - /cli-documentation/v6/commands/help-search
12
+ - /cli-documentation/v6/commands/npm-help-search
13
+ - /cli-documentation/v6/help-search
14
+ - /cli-documentation/v6/npm-help-search
15
+ - /cli/v6/cli-commands/help-search
16
+ - /cli/v6/cli-commands/npm-help-search
17
+ - /cli/v6/commands/help-search
18
+ - /cli/v6/help-search
19
+ - /cli/v6/npm-help-search
20
---
21
22
### Synopsis
content/cli/v6/commands/npm-help.md
+12
@@ -5,6 +5,18 @@ description: Get help on npm
5
github_repo: npm/cli
6
github_branch: v6
7
github_path: docs/content/commands/npm-help.md
8
+redirect_from:
9
+ - /cli-documentation/v6/cli-commands/help
10
+ - /cli-documentation/v6/cli-commands/npm-help
11
+ - /cli-documentation/v6/commands/help
12
+ - /cli-documentation/v6/commands/npm-help
13
+ - /cli-documentation/v6/help
14
+ - /cli-documentation/v6/npm-help
15
+ - /cli/v6/cli-commands/help
16
+ - /cli/v6/cli-commands/npm-help
17
+ - /cli/v6/commands/help
18
+ - /cli/v6/help
19
+ - /cli/v6/npm-help
20
---
21
22
### Synopsis
content/cli/v6/commands/npm-hook.md
+12
@@ -5,6 +5,18 @@ description: Manage registry hooks
5
github_repo: npm/cli
6
github_branch: v6
7
github_path: docs/content/commands/npm-hook.md
8
+redirect_from:
9
+ - /cli-documentation/v6/cli-commands/hook
10
+ - /cli-documentation/v6/cli-commands/npm-hook
11
+ - /cli-documentation/v6/commands/hook
12
+ - /cli-documentation/v6/commands/npm-hook
13
+ - /cli-documentation/v6/hook
14
+ - /cli-documentation/v6/npm-hook
15
+ - /cli/v6/cli-commands/hook
16
+ - /cli/v6/cli-commands/npm-hook
17
+ - /cli/v6/commands/hook
18
+ - /cli/v6/hook
19
+ - /cli/v6/npm-hook
20
---
21
22
### Synopsis
content/cli/v6/commands/npm-init.md
+12
@@ -5,6 +5,18 @@ description: create a package.json file
5
github_repo: npm/cli
6
github_branch: v6
7
github_path: docs/content/commands/npm-init.md
8
+redirect_from:
9
+ - /cli-documentation/v6/cli-commands/init
10
+ - /cli-documentation/v6/cli-commands/npm-init
11
+ - /cli-documentation/v6/commands/init
12
+ - /cli-documentation/v6/commands/npm-init
13
+ - /cli-documentation/v6/init
14
+ - /cli-documentation/v6/npm-init
15
+ - /cli/v6/cli-commands/init
16
+ - /cli/v6/cli-commands/npm-init
17
+ - /cli/v6/commands/init
18
+ - /cli/v6/init
19
+ - /cli/v6/npm-init
20
---
21
22
### Synopsis
content/cli/v6/commands/npm-install-ci-test.md
+12
@@ -5,6 +5,18 @@ description: Install a project with a clean slate and run tests
5
github_repo: npm/cli
6
github_branch: v6
7
github_path: docs/content/commands/npm-install-ci-test.md
8
+redirect_from:
9
+ - /cli-documentation/v6/cli-commands/install-ci-test
10
+ - /cli-documentation/v6/cli-commands/npm-install-ci-test
11
+ - /cli-documentation/v6/commands/install-ci-test
12
+ - /cli-documentation/v6/commands/npm-install-ci-test
13
+ - /cli-documentation/v6/install-ci-test
14
+ - /cli-documentation/v6/npm-install-ci-test
15
+ - /cli/v6/cli-commands/install-ci-test
16
+ - /cli/v6/cli-commands/npm-install-ci-test
17
+ - /cli/v6/commands/install-ci-test
18
+ - /cli/v6/install-ci-test
19
+ - /cli/v6/npm-install-ci-test
20
---
21
22
### Synopsis
content/cli/v6/commands/npm-install-test.md
+12
@@ -5,6 +5,18 @@ description: Install package(s) and run tests
5
github_repo: npm/cli
6
github_branch: v6
7
github_path: docs/content/commands/npm-install-test.md
8
+redirect_from:
9
+ - /cli-documentation/v6/cli-commands/install-test
10
+ - /cli-documentation/v6/cli-commands/npm-install-test
11
+ - /cli-documentation/v6/commands/install-test
12
+ - /cli-documentation/v6/commands/npm-install-test
13
+ - /cli-documentation/v6/install-test
14
+ - /cli-documentation/v6/npm-install-test
15
+ - /cli/v6/cli-commands/install-test
16
+ - /cli/v6/cli-commands/npm-install-test
17
+ - /cli/v6/commands/install-test
18
+ - /cli/v6/install-test
19
+ - /cli/v6/npm-install-test
20
---
21
22
### Synopsis
content/cli/v6/commands/npm-install.md
+12
@@ -5,6 +5,18 @@ description: Install a package
5
github_repo: npm/cli
6
github_branch: v6
7
github_path: docs/content/commands/npm-install.md
8
+redirect_from:
9
+ - /cli-documentation/v6/cli-commands/install
10
+ - /cli-documentation/v6/cli-commands/npm-install
11
+ - /cli-documentation/v6/commands/install
12
+ - /cli-documentation/v6/commands/npm-install
13
+ - /cli-documentation/v6/install
14
+ - /cli-documentation/v6/npm-install
15
+ - /cli/v6/cli-commands/install
16
+ - /cli/v6/cli-commands/npm-install
17
+ - /cli/v6/commands/install
18
+ - /cli/v6/install
19
+ - /cli/v6/npm-install
20
---
21
22
### Synopsis
content/cli/v6/commands/npm-link.md
+12
@@ -5,6 +5,18 @@ description: Symlink a package folder
5
github_repo: npm/cli
6
github_branch: v6
7
github_path: docs/content/commands/npm-link.md
8
+redirect_from:
9
+ - /cli-documentation/v6/cli-commands/link
10
+ - /cli-documentation/v6/cli-commands/npm-link
11
+ - /cli-documentation/v6/commands/link
12
+ - /cli-documentation/v6/commands/npm-link
13
+ - /cli-documentation/v6/link
14
+ - /cli-documentation/v6/npm-link
15
+ - /cli/v6/cli-commands/link
16
+ - /cli/v6/cli-commands/npm-link
17
+ - /cli/v6/commands/link
18
+ - /cli/v6/link
19
+ - /cli/v6/npm-link
20
---
21
22
### Synopsis
content/cli/v6/commands/npm-logout.md
+12
@@ -5,6 +5,18 @@ description: Log out of the registry
5
github_repo: npm/cli
6
github_branch: v6
7
github_path: docs/content/commands/npm-logout.md
8
+redirect_from:
9
+ - /cli-documentation/v6/cli-commands/logout
10
+ - /cli-documentation/v6/cli-commands/npm-logout
11
+ - /cli-documentation/v6/commands/logout
12
+ - /cli-documentation/v6/commands/npm-logout
13
+ - /cli-documentation/v6/logout
14
+ - /cli-documentation/v6/npm-logout
15
+ - /cli/v6/cli-commands/logout
16
+ - /cli/v6/cli-commands/npm-logout
17
+ - /cli/v6/commands/logout
18
+ - /cli/v6/logout
19
+ - /cli/v6/npm-logout
20
---
21
22
### Synopsis
content/cli/v6/commands/npm-ls.md
+12
@@ -5,6 +5,18 @@ description: List installed packages
5
github_repo: npm/cli
6
github_branch: v6
7
github_path: docs/content/commands/npm-ls.md
8
+redirect_from:
9
+ - /cli-documentation/v6/cli-commands/ls
10
+ - /cli-documentation/v6/cli-commands/npm-ls
11
+ - /cli-documentation/v6/commands/ls
12
+ - /cli-documentation/v6/commands/npm-ls
13
+ - /cli-documentation/v6/ls
14
+ - /cli-documentation/v6/npm-ls
15
+ - /cli/v6/cli-commands/ls
16
+ - /cli/v6/cli-commands/npm-ls
17
+ - /cli/v6/commands/ls
18
+ - /cli/v6/ls
19
+ - /cli/v6/npm-ls
20
---
21
22
### Synopsis
content/cli/v6/commands/npm-org.md
+12
@@ -5,6 +5,18 @@ description: Manage orgs
5
github_repo: npm/cli
6
github_branch: v6
7
github_path: docs/content/commands/npm-org.md
8
+redirect_from:
9
+ - /cli-documentation/v6/cli-commands/npm-org
10
+ - /cli-documentation/v6/cli-commands/org
11
+ - /cli-documentation/v6/commands/npm-org
12
+ - /cli-documentation/v6/commands/org
13
+ - /cli-documentation/v6/npm-org
14
+ - /cli-documentation/v6/org
15
+ - /cli/v6/cli-commands/npm-org
16
+ - /cli/v6/cli-commands/org
17
+ - /cli/v6/commands/org
18
+ - /cli/v6/npm-org
19
+ - /cli/v6/org
20
---
21
22
### Synopsis
content/cli/v6/commands/npm-outdated.md
+12
@@ -5,6 +5,18 @@ description: Check for outdated packages
5
github_repo: npm/cli
6
github_branch: v6
7
github_path: docs/content/commands/npm-outdated.md
8
+redirect_from:
9
+ - /cli-documentation/v6/cli-commands/npm-outdated
10
+ - /cli-documentation/v6/cli-commands/outdated
11
+ - /cli-documentation/v6/commands/npm-outdated
12
+ - /cli-documentation/v6/commands/outdated
13
+ - /cli-documentation/v6/npm-outdated
14
+ - /cli-documentation/v6/outdated
15
+ - /cli/v6/cli-commands/npm-outdated
16
+ - /cli/v6/cli-commands/outdated
17
+ - /cli/v6/commands/outdated
18
+ - /cli/v6/npm-outdated
19
+ - /cli/v6/outdated
20
---
21
22
### Synopsis
content/cli/v6/commands/npm-owner.md
+12
@@ -5,6 +5,18 @@ description: Manage package owners
5
github_repo: npm/cli
6
github_branch: v6
7
github_path: docs/content/commands/npm-owner.md
8
+redirect_from:
9
+ - /cli-documentation/v6/cli-commands/npm-owner
10
+ - /cli-documentation/v6/cli-commands/owner
11
+ - /cli-documentation/v6/commands/npm-owner
12
+ - /cli-documentation/v6/commands/owner
13
+ - /cli-documentation/v6/npm-owner
14
+ - /cli-documentation/v6/owner
15
+ - /cli/v6/cli-commands/npm-owner
16
+ - /cli/v6/cli-commands/owner
17
+ - /cli/v6/commands/owner
18
+ - /cli/v6/npm-owner
19
+ - /cli/v6/owner
20
---
21
22
### Synopsis
content/cli/v6/commands/npm-pack.md
+12
@@ -5,6 +5,18 @@ description: Create a tarball from a package
5
github_repo: npm/cli
6
github_branch: v6
7
github_path: docs/content/commands/npm-pack.md
8
+redirect_from:
9
+ - /cli-documentation/v6/cli-commands/npm-pack
10
+ - /cli-documentation/v6/cli-commands/pack
11
+ - /cli-documentation/v6/commands/npm-pack
12
+ - /cli-documentation/v6/commands/pack
13
+ - /cli-documentation/v6/npm-pack
14
+ - /cli-documentation/v6/pack
15
+ - /cli/v6/cli-commands/npm-pack
16
+ - /cli/v6/cli-commands/pack
17
+ - /cli/v6/commands/pack
18
+ - /cli/v6/npm-pack
19
+ - /cli/v6/pack
20
---
21
22
### Synopsis
content/cli/v6/commands/npm-ping.md
+12
@@ -5,6 +5,18 @@ description: Ping npm registry
5
github_repo: npm/cli
6
github_branch: v6
7
github_path: docs/content/commands/npm-ping.md
8
+redirect_from:
9
+ - /cli-documentation/v6/cli-commands/npm-ping
10
+ - /cli-documentation/v6/cli-commands/ping
11
+ - /cli-documentation/v6/commands/npm-ping
12
+ - /cli-documentation/v6/commands/ping
13
+ - /cli-documentation/v6/npm-ping
14
+ - /cli-documentation/v6/ping
15
+ - /cli/v6/cli-commands/npm-ping
16
+ - /cli/v6/cli-commands/ping
17
+ - /cli/v6/commands/ping
18
+ - /cli/v6/npm-ping
19
+ - /cli/v6/ping
20
---
21
22
### Synopsis
content/cli/v6/commands/npm-prefix.md
+12
@@ -5,6 +5,18 @@ description: Display prefix
5
github_repo: npm/cli
6
github_branch: v6
7
github_path: docs/content/commands/npm-prefix.md
8
+redirect_from:
9
+ - /cli-documentation/v6/cli-commands/npm-prefix
10
+ - /cli-documentation/v6/cli-commands/prefix
11
+ - /cli-documentation/v6/commands/npm-prefix
12
+ - /cli-documentation/v6/commands/prefix
13
+ - /cli-documentation/v6/npm-prefix
14
+ - /cli-documentation/v6/prefix
15
+ - /cli/v6/cli-commands/npm-prefix
16
+ - /cli/v6/cli-commands/prefix
17
+ - /cli/v6/commands/prefix
18
+ - /cli/v6/npm-prefix
19
+ - /cli/v6/prefix
20
---
21
22
### Synopsis
content/cli/v6/commands/npm-profile.md
+12
@@ -5,6 +5,18 @@ description: Change settings on your registry profile
5
github_repo: npm/cli
6
github_branch: v6
7
github_path: docs/content/commands/npm-profile.md
8
+redirect_from:
9
+ - /cli-documentation/v6/cli-commands/npm-profile
10
+ - /cli-documentation/v6/cli-commands/profile
11
+ - /cli-documentation/v6/commands/npm-profile
12
+ - /cli-documentation/v6/commands/profile
13
+ - /cli-documentation/v6/npm-profile
14
+ - /cli-documentation/v6/profile
15
+ - /cli/v6/cli-commands/npm-profile
16
+ - /cli/v6/cli-commands/profile
17
+ - /cli/v6/commands/profile
18
+ - /cli/v6/npm-profile
19
+ - /cli/v6/profile
20
---
21
22
### Synopsis
content/cli/v6/commands/npm-prune.md
+12
@@ -5,6 +5,18 @@ description: Remove extraneous packages
5
github_repo: npm/cli
6
github_branch: v6
7
github_path: docs/content/commands/npm-prune.md
8
+redirect_from:
9
+ - /cli-documentation/v6/cli-commands/npm-prune
10
+ - /cli-documentation/v6/cli-commands/prune
11
+ - /cli-documentation/v6/commands/npm-prune
12
+ - /cli-documentation/v6/commands/prune
13
+ - /cli-documentation/v6/npm-prune
14
+ - /cli-documentation/v6/prune
15
+ - /cli/v6/cli-commands/npm-prune
16
+ - /cli/v6/cli-commands/prune
17
+ - /cli/v6/commands/prune
18
+ - /cli/v6/npm-prune
19
+ - /cli/v6/prune
20
---
21
22
### Synopsis
content/cli/v6/commands/npm-publish.md
+12
@@ -5,6 +5,18 @@ description: Publish a package
5
github_repo: npm/cli
6
github_branch: v6
7
github_path: docs/content/commands/npm-publish.md
8
+redirect_from:
9
+ - /cli-documentation/v6/cli-commands/npm-publish
10
+ - /cli-documentation/v6/cli-commands/publish
11
+ - /cli-documentation/v6/commands/npm-publish
12
+ - /cli-documentation/v6/commands/publish
13
+ - /cli-documentation/v6/npm-publish
14
+ - /cli-documentation/v6/publish
15
+ - /cli/v6/cli-commands/npm-publish
16
+ - /cli/v6/cli-commands/publish
17
+ - /cli/v6/commands/publish
18
+ - /cli/v6/npm-publish
19
+ - /cli/v6/publish
20
---
21
22
### Synopsis
content/cli/v6/commands/npm-rebuild.md
+12
@@ -5,6 +5,18 @@ description: Rebuild a package
5
github_repo: npm/cli
6
github_branch: v6
7
github_path: docs/content/commands/npm-rebuild.md
8
+redirect_from:
9
+ - /cli-documentation/v6/cli-commands/npm-rebuild
10
+ - /cli-documentation/v6/cli-commands/rebuild
11
+ - /cli-documentation/v6/commands/npm-rebuild
12
+ - /cli-documentation/v6/commands/rebuild
13
+ - /cli-documentation/v6/npm-rebuild
14
+ - /cli-documentation/v6/rebuild
15
+ - /cli/v6/cli-commands/npm-rebuild
16
+ - /cli/v6/cli-commands/rebuild
17
+ - /cli/v6/commands/rebuild
18
+ - /cli/v6/npm-rebuild
19
+ - /cli/v6/rebuild
20
---
21
22
### Synopsis
content/cli/v6/commands/npm-repo.md
+12
@@ -5,6 +5,18 @@ description: Open package repository page in the browser
5
github_repo: npm/cli
6
github_branch: v6
7
github_path: docs/content/commands/npm-repo.md
8
+redirect_from:
9
+ - /cli-documentation/v6/cli-commands/npm-repo
10
+ - /cli-documentation/v6/cli-commands/repo
11
+ - /cli-documentation/v6/commands/npm-repo
12
+ - /cli-documentation/v6/commands/repo
13
+ - /cli-documentation/v6/npm-repo
14
+ - /cli-documentation/v6/repo
15
+ - /cli/v6/cli-commands/npm-repo
16
+ - /cli/v6/cli-commands/repo
17
+ - /cli/v6/commands/repo
18
+ - /cli/v6/npm-repo
19
+ - /cli/v6/repo
20
---
21
22
### Synopsis
content/cli/v6/commands/npm-restart.md
+12
@@ -5,6 +5,18 @@ description: Restart a package
5
github_repo: npm/cli
6
github_branch: v6
7
github_path: docs/content/commands/npm-restart.md
8
+redirect_from:
9
+ - /cli-documentation/v6/cli-commands/npm-restart
10
+ - /cli-documentation/v6/cli-commands/restart
11
+ - /cli-documentation/v6/commands/npm-restart
12
+ - /cli-documentation/v6/commands/restart
13
+ - /cli-documentation/v6/npm-restart
14
+ - /cli-documentation/v6/restart
15
+ - /cli/v6/cli-commands/npm-restart
16
+ - /cli/v6/cli-commands/restart
17
+ - /cli/v6/commands/restart
18
+ - /cli/v6/npm-restart
19
+ - /cli/v6/restart
20
---
21
22
### Synopsis
content/cli/v6/commands/npm-root.md
+12
@@ -5,6 +5,18 @@ description: Display npm root
5
github_repo: npm/cli
6
github_branch: v6
7
github_path: docs/content/commands/npm-root.md
8
+redirect_from:
9
+ - /cli-documentation/v6/cli-commands/npm-root
10
+ - /cli-documentation/v6/cli-commands/root
11
+ - /cli-documentation/v6/commands/npm-root
12
+ - /cli-documentation/v6/commands/root
13
+ - /cli-documentation/v6/npm-root
14
+ - /cli-documentation/v6/root
15
+ - /cli/v6/cli-commands/npm-root
16
+ - /cli/v6/cli-commands/root
17
+ - /cli/v6/commands/root
18
+ - /cli/v6/npm-root
19
+ - /cli/v6/root
20
---
21
22
### Synopsis
content/cli/v6/commands/npm-run-script.md
+12
@@ -5,6 +5,18 @@ description: Run arbitrary package scripts
5
github_repo: npm/cli
6
github_branch: v6
7
github_path: docs/content/commands/npm-run-script.md
8
+redirect_from:
9
+ - /cli-documentation/v6/cli-commands/npm-run-script
10
+ - /cli-documentation/v6/cli-commands/run-script
11
+ - /cli-documentation/v6/commands/npm-run-script
12
+ - /cli-documentation/v6/commands/run-script
13
+ - /cli-documentation/v6/npm-run-script
14
+ - /cli-documentation/v6/run-script
15
+ - /cli/v6/cli-commands/npm-run-script
16
+ - /cli/v6/cli-commands/run-script
17
+ - /cli/v6/commands/run-script
18
+ - /cli/v6/npm-run-script
19
+ - /cli/v6/run-script
20
---
21
22
### Synopsis
content/cli/v6/commands/npm-search.md
+12
@@ -5,6 +5,18 @@ description: Search for packages
5
github_repo: npm/cli
6
github_branch: v6
7
github_path: docs/content/commands/npm-search.md
8
+redirect_from:
9
+ - /cli-documentation/v6/cli-commands/npm-search
10
+ - /cli-documentation/v6/cli-commands/search
11
+ - /cli-documentation/v6/commands/npm-search
12
+ - /cli-documentation/v6/commands/search
13
+ - /cli-documentation/v6/npm-search
14
+ - /cli-documentation/v6/search
15
+ - /cli/v6/cli-commands/npm-search
16
+ - /cli/v6/cli-commands/search
17
+ - /cli/v6/commands/search
18
+ - /cli/v6/npm-search
19
+ - /cli/v6/search
20
---
21
22
### Synopsis
content/cli/v6/commands/npm-shrinkwrap.md
+12
@@ -5,6 +5,18 @@ description: Lock down dependency versions for publication
5
github_repo: npm/cli
6
github_branch: v6
7
github_path: docs/content/commands/npm-shrinkwrap.md
8
+redirect_from:
9
+ - /cli-documentation/v6/cli-commands/npm-shrinkwrap
10
+ - /cli-documentation/v6/cli-commands/shrinkwrap
11
+ - /cli-documentation/v6/commands/npm-shrinkwrap
12
+ - /cli-documentation/v6/commands/shrinkwrap
13
+ - /cli-documentation/v6/npm-shrinkwrap
14
+ - /cli-documentation/v6/shrinkwrap
15
+ - /cli/v6/cli-commands/npm-shrinkwrap
16
+ - /cli/v6/cli-commands/shrinkwrap
17
+ - /cli/v6/commands/shrinkwrap
18
+ - /cli/v6/npm-shrinkwrap
19
+ - /cli/v6/shrinkwrap
20
---
21
22
### Synopsis
content/cli/v6/commands/npm-star.md
+12
@@ -5,6 +5,18 @@ description: Mark your favorite packages
5
github_repo: npm/cli
6
github_branch: v6
7
github_path: docs/content/commands/npm-star.md
8
+redirect_from:
9
+ - /cli-documentation/v6/cli-commands/npm-star
10
+ - /cli-documentation/v6/cli-commands/star
11
+ - /cli-documentation/v6/commands/npm-star
12
+ - /cli-documentation/v6/commands/star
13
+ - /cli-documentation/v6/npm-star
14
+ - /cli-documentation/v6/star
15
+ - /cli/v6/cli-commands/npm-star
16
+ - /cli/v6/cli-commands/star
17
+ - /cli/v6/commands/star
18
+ - /cli/v6/npm-star
19
+ - /cli/v6/star
20
---
21
22
### Synopsis
content/cli/v6/commands/npm-stars.md
+12
@@ -5,6 +5,18 @@ description: View packages marked as favorites
5
github_repo: npm/cli
6
github_branch: v6
7
github_path: docs/content/commands/npm-stars.md
8
+redirect_from:
9
+ - /cli-documentation/v6/cli-commands/npm-stars
10
+ - /cli-documentation/v6/cli-commands/stars
11
+ - /cli-documentation/v6/commands/npm-stars
12
+ - /cli-documentation/v6/commands/stars
13
+ - /cli-documentation/v6/npm-stars
14
+ - /cli-documentation/v6/stars
15
+ - /cli/v6/cli-commands/npm-stars
16
+ - /cli/v6/cli-commands/stars
17
+ - /cli/v6/commands/stars
18
+ - /cli/v6/npm-stars
19
+ - /cli/v6/stars
20
---
21
22
### Synopsis
content/cli/v6/commands/npm-start.md
+12
@@ -5,6 +5,18 @@ description: Start a package
5
github_repo: npm/cli
6
github_branch: v6
7
github_path: docs/content/commands/npm-start.md
8
+redirect_from:
9
+ - /cli-documentation/v6/cli-commands/npm-start
10
+ - /cli-documentation/v6/cli-commands/start
11
+ - /cli-documentation/v6/commands/npm-start
12
+ - /cli-documentation/v6/commands/start
13
+ - /cli-documentation/v6/npm-start
14
+ - /cli-documentation/v6/start
15
+ - /cli/v6/cli-commands/npm-start
16
+ - /cli/v6/cli-commands/start
17
+ - /cli/v6/commands/start
18
+ - /cli/v6/npm-start
19
+ - /cli/v6/start
20
---
21
22
### Synopsis
content/cli/v6/commands/npm-stop.md
+12
@@ -5,6 +5,18 @@ description: Stop a package
5
github_repo: npm/cli
6
github_branch: v6
7
github_path: docs/content/commands/npm-stop.md
8
+redirect_from:
9
+ - /cli-documentation/v6/cli-commands/npm-stop
10
+ - /cli-documentation/v6/cli-commands/stop
11
+ - /cli-documentation/v6/commands/npm-stop
12
+ - /cli-documentation/v6/commands/stop
13
+ - /cli-documentation/v6/npm-stop
14
+ - /cli-documentation/v6/stop
15
+ - /cli/v6/cli-commands/npm-stop
16
+ - /cli/v6/cli-commands/stop
17
+ - /cli/v6/commands/stop
18
+ - /cli/v6/npm-stop
19
+ - /cli/v6/stop
20
---
21
22
### Synopsis
content/cli/v6/commands/npm-team.md
+12
@@ -5,6 +5,18 @@ description: Manage organization teams and team memberships
5
github_repo: npm/cli
6
github_branch: v6
7
github_path: docs/content/commands/npm-team.md
8
+redirect_from:
9
+ - /cli-documentation/v6/cli-commands/npm-team
10
+ - /cli-documentation/v6/cli-commands/team
11
+ - /cli-documentation/v6/commands/npm-team
12
+ - /cli-documentation/v6/commands/team
13
+ - /cli-documentation/v6/npm-team
14
+ - /cli-documentation/v6/team
15
+ - /cli/v6/cli-commands/npm-team
16
+ - /cli/v6/cli-commands/team
17
+ - /cli/v6/commands/team
18
+ - /cli/v6/npm-team
19
+ - /cli/v6/team
20
---
21
22
### Synopsis
content/cli/v6/commands/npm-test.md
+12
@@ -5,6 +5,18 @@ description: Test a package
5
github_repo: npm/cli
6
github_branch: v6
7
github_path: docs/content/commands/npm-test.md
8
+redirect_from:
9
+ - /cli-documentation/v6/cli-commands/npm-test
10
+ - /cli-documentation/v6/cli-commands/test
11
+ - /cli-documentation/v6/commands/npm-test
12
+ - /cli-documentation/v6/commands/test
13
+ - /cli-documentation/v6/npm-test
14
+ - /cli-documentation/v6/test
15
+ - /cli/v6/cli-commands/npm-test
16
+ - /cli/v6/cli-commands/test
17
+ - /cli/v6/commands/test
18
+ - /cli/v6/npm-test
19
+ - /cli/v6/test
20
---
21
22
### Synopsis
content/cli/v6/commands/npm-token.md
+12
@@ -5,6 +5,18 @@ description: Manage your authentication tokens
5
github_repo: npm/cli
6
github_branch: v6
7
github_path: docs/content/commands/npm-token.md
8
+redirect_from:
9
+ - /cli-documentation/v6/cli-commands/npm-token
10
+ - /cli-documentation/v6/cli-commands/token
11
+ - /cli-documentation/v6/commands/npm-token
12
+ - /cli-documentation/v6/commands/token
13
+ - /cli-documentation/v6/npm-token
14
+ - /cli-documentation/v6/token
15
+ - /cli/v6/cli-commands/npm-token
16
+ - /cli/v6/cli-commands/token
17
+ - /cli/v6/commands/token
18
+ - /cli/v6/npm-token
19
+ - /cli/v6/token
20
---
21
22
### Synopsis
content/cli/v6/commands/npm-uninstall.md
+12
@@ -5,6 +5,18 @@ description: Remove a package
5
github_repo: npm/cli
6
github_branch: v6
7
github_path: docs/content/commands/npm-uninstall.md
8
+redirect_from:
9
+ - /cli-documentation/v6/cli-commands/npm-uninstall
10
+ - /cli-documentation/v6/cli-commands/uninstall
11
+ - /cli-documentation/v6/commands/npm-uninstall
12
+ - /cli-documentation/v6/commands/uninstall
13
+ - /cli-documentation/v6/npm-uninstall
14
+ - /cli-documentation/v6/uninstall
15
+ - /cli/v6/cli-commands/npm-uninstall
16
+ - /cli/v6/cli-commands/uninstall
17
+ - /cli/v6/commands/uninstall
18
+ - /cli/v6/npm-uninstall
19
+ - /cli/v6/uninstall
20
---
21
22
### Synopsis
content/cli/v6/commands/npm-unpublish.md
+12
@@ -5,6 +5,18 @@ description: Remove a package from the registry
5
github_repo: npm/cli
6
github_branch: v6
7
github_path: docs/content/commands/npm-unpublish.md
8
+redirect_from:
9
+ - /cli-documentation/v6/cli-commands/npm-unpublish
10
+ - /cli-documentation/v6/cli-commands/unpublish
11
+ - /cli-documentation/v6/commands/npm-unpublish
12
+ - /cli-documentation/v6/commands/unpublish
13
+ - /cli-documentation/v6/npm-unpublish
14
+ - /cli-documentation/v6/unpublish
15
+ - /cli/v6/cli-commands/npm-unpublish
16
+ - /cli/v6/cli-commands/unpublish
17
+ - /cli/v6/commands/unpublish
18
+ - /cli/v6/npm-unpublish
19
+ - /cli/v6/unpublish
20
---
21
22
### Synopsis
content/cli/v6/commands/npm-update.md
+12
@@ -5,6 +5,18 @@ description: Update a package
5
github_repo: npm/cli
6
github_branch: v6
7
github_path: docs/content/commands/npm-update.md
8
+redirect_from:
9
+ - /cli-documentation/v6/cli-commands/npm-update
10
+ - /cli-documentation/v6/cli-commands/update
11
+ - /cli-documentation/v6/commands/npm-update
12
+ - /cli-documentation/v6/commands/update
13
+ - /cli-documentation/v6/npm-update
14
+ - /cli-documentation/v6/update
15
+ - /cli/v6/cli-commands/npm-update
16
+ - /cli/v6/cli-commands/update
17
+ - /cli/v6/commands/update
18
+ - /cli/v6/npm-update
19
+ - /cli/v6/update
20
---
21
22
### Synopsis
content/cli/v6/commands/npm-version.md
+12
@@ -5,6 +5,18 @@ description: Bump a package version
5
github_repo: npm/cli
6
github_branch: v6
7
github_path: docs/content/commands/npm-version.md
8
+redirect_from:
9
+ - /cli-documentation/v6/cli-commands/npm-version
10
+ - /cli-documentation/v6/cli-commands/version
11
+ - /cli-documentation/v6/commands/npm-version
12
+ - /cli-documentation/v6/commands/version
13
+ - /cli-documentation/v6/npm-version
14
+ - /cli-documentation/v6/version
15
+ - /cli/v6/cli-commands/npm-version
16
+ - /cli/v6/cli-commands/version
17
+ - /cli/v6/commands/version
18
+ - /cli/v6/npm-version
19
+ - /cli/v6/version
20
---
21
22
### Synopsis
content/cli/v6/commands/npm-view.md
+12
@@ -5,6 +5,18 @@ description: View registry info
5
github_repo: npm/cli
6
github_branch: v6
7
github_path: docs/content/commands/npm-view.md
8
+redirect_from:
9
+ - /cli-documentation/v6/cli-commands/npm-view
10
+ - /cli-documentation/v6/cli-commands/view
11
+ - /cli-documentation/v6/commands/npm-view
12
+ - /cli-documentation/v6/commands/view
13
+ - /cli-documentation/v6/npm-view
14
+ - /cli-documentation/v6/view
15
+ - /cli/v6/cli-commands/npm-view
16
+ - /cli/v6/cli-commands/view
17
+ - /cli/v6/commands/view
18
+ - /cli/v6/npm-view
19
+ - /cli/v6/view
20
---
21
22
### Synopsis
content/cli/v6/commands/npm-whoami.md
+12
@@ -5,6 +5,18 @@ description: Display npm username
5
github_repo: npm/cli
6
github_branch: v6
7
github_path: docs/content/commands/npm-whoami.md
8
+redirect_from:
9
+ - /cli-documentation/v6/cli-commands/npm-whoami
10
+ - /cli-documentation/v6/cli-commands/whoami
11
+ - /cli-documentation/v6/commands/npm-whoami
12
+ - /cli-documentation/v6/commands/whoami
13
+ - /cli-documentation/v6/npm-whoami
14
+ - /cli-documentation/v6/whoami
15
+ - /cli/v6/cli-commands/npm-whoami
16
+ - /cli/v6/cli-commands/whoami
17
+ - /cli/v6/commands/whoami
18
+ - /cli/v6/npm-whoami
19
+ - /cli/v6/whoami
20
---
21
22
### Synopsis
content/cli/v6/commands/npm.md
+6
@@ -5,6 +5,12 @@ description: javascript package manager
5
github_repo: npm/cli
6
github_branch: v6
7
github_path: docs/content/commands/npm.md
8
+redirect_from:
9
+ - /cli-documentation/v6/cli-commands/npm
10
+ - /cli-documentation/v6/commands/npm
11
+ - /cli-documentation/v6/npm
12
+ - /cli/v6/cli-commands/npm
13
+ - /cli/v6/npm
14
---
15
16
### Synopsis
content/cli/v6/configuring-npm/folders.md
+4
@@ -5,6 +5,10 @@ description: Folder Structures Used by npm
5
github_repo: npm/cli
6
github_branch: v6
7
github_path: docs/content/configuring-npm/folders.md
8
+redirect_from:
9
+ - /cli-documentation/v6/configuring-npm/folders
10
+ - /cli-documentation/v6/files/folders
11
+ - /cli/v6/files/folders
12
---
13
14
### Description
content/cli/v6/configuring-npm/index.mdx
+8
@@ -3,6 +3,14 @@ title: Configuring npm
3
github_repo: npm/cli
4
github_branch: v6
5
github_path: docs/nav.yml
6
+redirect_from:
7
+ - /cli-documentation/v6/configuring-npm
8
+ - /cli-documentation/v6/configuring-npm/index
9
+ - /cli-documentation/v6/files
10
+ - /cli-documentation/v6/files/index
11
+ - /cli/v6/configuring-npm/index
12
+ - /cli/v6/files
13
+ - /cli/v6/files/index
14
---
15
16
<Index depth="1" />
content/cli/v6/configuring-npm/install.md
+4
@@ -5,6 +5,10 @@ description: Download and install node and npm
5
github_repo: npm/cli
6
github_branch: v6
7
github_path: docs/content/configuring-npm/install.md
8
+redirect_from:
9
+ - /cli-documentation/v6/configuring-npm/install
10
+ - /cli-documentation/v6/files/install
11
+ - /cli/v6/files/install
12
---
13
14
### Description
content/cli/v6/configuring-npm/npmrc.md
+4
@@ -5,6 +5,10 @@ description: The npm config files
5
github_repo: npm/cli
6
github_branch: v6
7
github_path: docs/content/configuring-npm/npmrc.md
8
+redirect_from:
9
+ - /cli-documentation/v6/configuring-npm/npmrc
10
+ - /cli-documentation/v6/files/npmrc
11
+ - /cli/v6/files/npmrc
12
---
13
14
### Description
content/cli/v6/configuring-npm/package-json.md
+8
@@ -5,6 +5,14 @@ description: Specifics of npm's package.json handling
5
github_repo: npm/cli
6
github_branch: v6
7
github_path: docs/content/configuring-npm/package-json.md
8
+redirect_from:
9
+ - /cli-documentation/v6/configuring-npm/package-json
10
+ - /cli-documentation/v6/configuring-npm/package.json
11
+ - /cli-documentation/v6/files/package-json
12
+ - /cli-documentation/v6/files/package.json
13
+ - /cli/v6/configuring-npm/package.json
14
+ - /cli/v6/files/package-json
15
+ - /cli/v6/files/package.json
16
---
17
18
### Description
content/cli/v6/configuring-npm/package-lock-json.md
+8
@@ -5,6 +5,14 @@ description: A manifestation of the manifest
5
github_repo: npm/cli
6
github_branch: v6
7
github_path: docs/content/configuring-npm/package-lock-json.md
8
+redirect_from:
9
+ - /cli-documentation/v6/configuring-npm/package-lock-json
10
+ - /cli-documentation/v6/configuring-npm/package-lock.json
11
+ - /cli-documentation/v6/files/package-lock-json
12
+ - /cli-documentation/v6/files/package-lock.json
13
+ - /cli/v6/configuring-npm/package-lock.json
14
+ - /cli/v6/files/package-lock-json
15
+ - /cli/v6/files/package-lock.json
16
---
17
18
### Description
content/cli/v6/configuring-npm/package-locks.md
+5
@@ -5,6 +5,11 @@ description: An explanation of npm lockfiles
5
github_repo: npm/cli
6
github_branch: v6
7
github_path: docs/content/configuring-npm/package-locks.md
8
+redirect_from:
9
+ - /cli-documentation/v6/configuring-npm/package-locks
10
+ - /cli-documentation/v6/files/package-locks
11
+ - /cli/v6/files/package-locks
12
+ - /configuring-npm/package-locks
13
---
14
15
### Description
content/cli/v6/configuring-npm/shrinkwrap-json.md
+8
@@ -5,6 +5,14 @@ description: A publishable lockfile
5
github_repo: npm/cli
6
github_branch: v6
7
github_path: docs/content/configuring-npm/shrinkwrap-json.md
8
+redirect_from:
9
+ - /cli-documentation/v6/configuring-npm/shrinkwrap-json
10
+ - /cli-documentation/v6/configuring-npm/shrinkwrap.json
11
+ - /cli-documentation/v6/files/shrinkwrap-json
12
+ - /cli-documentation/v6/files/shrinkwrap.json
13
+ - /cli/v6/configuring-npm/shrinkwrap.json
14
+ - /cli/v6/files/shrinkwrap-json
15
+ - /cli/v6/files/shrinkwrap.json
16
---
17
18
### Description
content/cli/v6/index.mdx
+4
@@ -3,6 +3,10 @@ title: npm CLI
3
github_repo: npm/cli
4
github_branch: v6
5
github_path: docs/nav.yml
6
+redirect_from:
7
+ - /cli-documentation/v6
8
+ - /cli-documentation/v6/index
9
+ - /cli/v6/index
10
---
11
12
<Index depth="1" />
content/cli/v6/using-npm/config.md
+4
@@ -5,6 +5,10 @@ description: More than you probably want to know about npm configuration
5
github_repo: npm/cli
6
github_branch: v6
7
github_path: docs/content/using-npm/config.md
8
+redirect_from:
9
+ - /cli-documentation/v6/misc/config
10
+ - /cli-documentation/v6/using-npm/config
11
+ - /cli/v6/misc/config
12
---
13
14
### Description
content/cli/v6/using-npm/developers.md
+4
@@ -5,6 +5,10 @@ description: Developer Guide
5
github_repo: npm/cli
6
github_branch: v6
7
github_path: docs/content/using-npm/developers.md
8
+redirect_from:
9
+ - /cli-documentation/v6/misc/developers
10
+ - /cli-documentation/v6/using-npm/developers
11
+ - /cli/v6/misc/developers
12
---
13
14
### Description
content/cli/v6/using-npm/index.mdx
+8
@@ -3,6 +3,14 @@ title: Using npm
3
github_repo: npm/cli
4
github_branch: v6
5
github_path: docs/nav.yml
6
+redirect_from:
7
+ - /cli-documentation/v6/misc
8
+ - /cli-documentation/v6/misc/index
9
+ - /cli-documentation/v6/using-npm
10
+ - /cli-documentation/v6/using-npm/index
11
+ - /cli/v6/misc
12
+ - /cli/v6/misc/index
13
+ - /cli/v6/using-npm/index
14
---
15
16
<Index depth="1" />
content/cli/v6/using-npm/orgs.md
+4
@@ -5,6 +5,10 @@ description: Working with Teams & Orgs
5
github_repo: npm/cli
6
github_branch: v6
7
github_path: docs/content/using-npm/orgs.md
8
+redirect_from:
9
+ - /cli-documentation/v6/misc/orgs
10
+ - /cli-documentation/v6/using-npm/orgs
11
+ - /cli/v6/misc/orgs
12
---
13
14
### Description
content/cli/v6/using-npm/registry.md
+4
@@ -5,6 +5,10 @@ description: The JavaScript Package Registry
5
github_repo: npm/cli
6
github_branch: v6
7
github_path: docs/content/using-npm/registry.md
8
+redirect_from:
9
+ - /cli-documentation/v6/misc/registry
10
+ - /cli-documentation/v6/using-npm/registry
11
+ - /cli/v6/misc/registry
12
---
13
14
### Description
content/cli/v6/using-npm/removal.md
+8
@@ -5,6 +5,14 @@ description: Cleaning the Slate
5
github_repo: npm/cli
6
github_branch: v6
7
github_path: docs/content/using-npm/removal.md
8
+redirect_from:
9
+ - /cli-documentation/v6/misc/removal
10
+ - /cli-documentation/v6/misc/removing-npm
11
+ - /cli-documentation/v6/using-npm/removal
12
+ - /cli-documentation/v6/using-npm/removing-npm
13
+ - /cli/v6/misc/removal
14
+ - /cli/v6/misc/removing-npm
15
+ - /cli/v6/using-npm/removing-npm
16
---
17
18
### Synopsis
content/cli/v6/using-npm/scope.md
+8
@@ -5,6 +5,14 @@ description: Scoped packages
5
github_repo: npm/cli
6
github_branch: v6
7
github_path: docs/content/using-npm/scope.md
8
+redirect_from:
9
+ - /cli-documentation/v6/misc/npm-scope
10
+ - /cli-documentation/v6/misc/scope
11
+ - /cli-documentation/v6/using-npm/npm-scope
12
+ - /cli-documentation/v6/using-npm/scope
13
+ - /cli/v6/misc/npm-scope
14
+ - /cli/v6/misc/scope
15
+ - /cli/v6/using-npm/npm-scope
16
---
17
18
### Description
content/cli/v6/using-npm/scripts.md
+4
@@ -5,6 +5,10 @@ description: How npm handles the "scripts" field
5
github_repo: npm/cli
6
github_branch: v6
7
github_path: docs/content/using-npm/scripts.md
8
+redirect_from:
9
+ - /cli-documentation/v6/misc/scripts
10
+ - /cli-documentation/v6/using-npm/scripts
11
+ - /cli/v6/misc/scripts
12
---
13
14
### Description
content/cli/v6/using-npm/semver.md
+4
@@ -5,6 +5,10 @@ description: The semantic versioner for npm
5
github_repo: npm/cli
6
github_branch: v6
7
github_path: docs/content/using-npm/semver.md
8
+redirect_from:
9
+ - /cli-documentation/v6/misc/semver
10
+ - /cli-documentation/v6/using-npm/semver
11
+ - /cli/v6/misc/semver
12
---
13
14
## Install
content/cli/v7/commands/index.mdx
+8
@@ -3,6 +3,14 @@ title: CLI Commands
3
github_repo: npm/cli
4
github_branch: v7
5
github_path: docs/nav.yml
6
+redirect_from:
7
+ - /cli-documentation/v7/cli-commands
8
+ - /cli-documentation/v7/cli-commands/index
9
+ - /cli-documentation/v7/commands
10
+ - /cli-documentation/v7/commands/index
11
+ - /cli/v7/cli-commands
12
+ - /cli/v7/cli-commands/index
13
+ - /cli/v7/commands/index
14
---
15
16
<Index depth="1" />
content/cli/v7/commands/npm-access.md
+12
@@ -5,6 +5,18 @@ description: Set access level on published packages
5
github_repo: npm/cli
6
github_branch: v7
7
github_path: docs/content/commands/npm-access.md
8
+redirect_from:
9
+ - /cli-documentation/v7/access
10
+ - /cli-documentation/v7/cli-commands/access
11
+ - /cli-documentation/v7/cli-commands/npm-access
12
+ - /cli-documentation/v7/commands/access
13
+ - /cli-documentation/v7/commands/npm-access
14
+ - /cli-documentation/v7/npm-access
15
+ - /cli/v7/access
16
+ - /cli/v7/cli-commands/access
17
+ - /cli/v7/cli-commands/npm-access
18
+ - /cli/v7/commands/access
19
+ - /cli/v7/npm-access
20
---
21
22
### Synopsis
content/cli/v7/commands/npm-adduser.md
+12
@@ -5,6 +5,18 @@ description: Add a registry user account
5
github_repo: npm/cli
6
github_branch: v7
7
github_path: docs/content/commands/npm-adduser.md
8
+redirect_from:
9
+ - /cli-documentation/v7/adduser
10
+ - /cli-documentation/v7/cli-commands/adduser
11
+ - /cli-documentation/v7/cli-commands/npm-adduser
12
+ - /cli-documentation/v7/commands/adduser
13
+ - /cli-documentation/v7/commands/npm-adduser
14
+ - /cli-documentation/v7/npm-adduser
15
+ - /cli/v7/adduser
16
+ - /cli/v7/cli-commands/adduser
17
+ - /cli/v7/cli-commands/npm-adduser
18
+ - /cli/v7/commands/adduser
19
+ - /cli/v7/npm-adduser
20
---
21
22
### Synopsis
content/cli/v7/commands/npm-audit.md
+12
@@ -5,6 +5,18 @@ description: Run a security audit
5
github_repo: npm/cli
6
github_branch: v7
7
github_path: docs/content/commands/npm-audit.md
8
+redirect_from:
9
+ - /cli-documentation/v7/audit
10
+ - /cli-documentation/v7/cli-commands/audit
11
+ - /cli-documentation/v7/cli-commands/npm-audit
12
+ - /cli-documentation/v7/commands/audit
13
+ - /cli-documentation/v7/commands/npm-audit
14
+ - /cli-documentation/v7/npm-audit
15
+ - /cli/v7/audit
16
+ - /cli/v7/cli-commands/audit
17
+ - /cli/v7/cli-commands/npm-audit
18
+ - /cli/v7/commands/audit
19
+ - /cli/v7/npm-audit
20
---
21
22
### Synopsis
content/cli/v7/commands/npm-bin.md
+12
@@ -5,6 +5,18 @@ description: Display npm bin folder
5
github_repo: npm/cli
6
github_branch: v7
7
github_path: docs/content/commands/npm-bin.md
8
+redirect_from:
9
+ - /cli-documentation/v7/bin
10
+ - /cli-documentation/v7/cli-commands/bin
11
+ - /cli-documentation/v7/cli-commands/npm-bin
12
+ - /cli-documentation/v7/commands/bin
13
+ - /cli-documentation/v7/commands/npm-bin
14
+ - /cli-documentation/v7/npm-bin
15
+ - /cli/v7/bin
16
+ - /cli/v7/cli-commands/bin
17
+ - /cli/v7/cli-commands/npm-bin
18
+ - /cli/v7/commands/bin
19
+ - /cli/v7/npm-bin
20
---
21
22
### Synopsis
content/cli/v7/commands/npm-bugs.md
+12
@@ -5,6 +5,18 @@ description: Report bugs for a package in a web browser
5
github_repo: npm/cli
6
github_branch: v7
7
github_path: docs/content/commands/npm-bugs.md
8
+redirect_from:
9
+ - /cli-documentation/v7/bugs
10
+ - /cli-documentation/v7/cli-commands/bugs
11
+ - /cli-documentation/v7/cli-commands/npm-bugs
12
+ - /cli-documentation/v7/commands/bugs
13
+ - /cli-documentation/v7/commands/npm-bugs
14
+ - /cli-documentation/v7/npm-bugs
15
+ - /cli/v7/bugs
16
+ - /cli/v7/cli-commands/bugs
17
+ - /cli/v7/cli-commands/npm-bugs
18
+ - /cli/v7/commands/bugs
19
+ - /cli/v7/npm-bugs
20
---
21
22
### Synopsis
content/cli/v7/commands/npm-cache.md
+12
@@ -5,6 +5,18 @@ description: Manipulates packages cache
5
github_repo: npm/cli
6
github_branch: v7
7
github_path: docs/content/commands/npm-cache.md
8
+redirect_from:
9
+ - /cli-documentation/v7/cache
10
+ - /cli-documentation/v7/cli-commands/cache
11
+ - /cli-documentation/v7/cli-commands/npm-cache
12
+ - /cli-documentation/v7/commands/cache
13
+ - /cli-documentation/v7/commands/npm-cache
14
+ - /cli-documentation/v7/npm-cache
15
+ - /cli/v7/cache
16
+ - /cli/v7/cli-commands/cache
17
+ - /cli/v7/cli-commands/npm-cache
18
+ - /cli/v7/commands/cache
19
+ - /cli/v7/npm-cache
20
---
21
22
### Synopsis
content/cli/v7/commands/npm-ci.md
+12
@@ -5,6 +5,18 @@ description: Install a project with a clean slate
5
github_repo: npm/cli
6
github_branch: v7
7
github_path: docs/content/commands/npm-ci.md
8
+redirect_from:
9
+ - /cli-documentation/v7/ci
10
+ - /cli-documentation/v7/cli-commands/ci
11
+ - /cli-documentation/v7/cli-commands/npm-ci
12
+ - /cli-documentation/v7/commands/ci
13
+ - /cli-documentation/v7/commands/npm-ci
14
+ - /cli-documentation/v7/npm-ci
15
+ - /cli/v7/ci
16
+ - /cli/v7/cli-commands/ci
17
+ - /cli/v7/cli-commands/npm-ci
18
+ - /cli/v7/commands/ci
19
+ - /cli/v7/npm-ci
20
---
21
22
### Synopsis
content/cli/v7/commands/npm-completion.md
+12
@@ -5,6 +5,18 @@ description: Tab Completion for npm
5
github_repo: npm/cli
6
github_branch: v7
7
github_path: docs/content/commands/npm-completion.md
8
+redirect_from:
9
+ - /cli-documentation/v7/cli-commands/completion
10
+ - /cli-documentation/v7/cli-commands/npm-completion
11
+ - /cli-documentation/v7/commands/completion
12
+ - /cli-documentation/v7/commands/npm-completion
13
+ - /cli-documentation/v7/completion
14
+ - /cli-documentation/v7/npm-completion
15
+ - /cli/v7/cli-commands/completion
16
+ - /cli/v7/cli-commands/npm-completion
17
+ - /cli/v7/commands/completion
18
+ - /cli/v7/completion
19
+ - /cli/v7/npm-completion
20
---
21
22
### Synopsis
content/cli/v7/commands/npm-config.md
+12
@@ -5,6 +5,18 @@ description: Manage the npm configuration files
5
github_repo: npm/cli
6
github_branch: v7
7
github_path: docs/content/commands/npm-config.md
8
+redirect_from:
9
+ - /cli-documentation/v7/cli-commands/config
10
+ - /cli-documentation/v7/cli-commands/npm-config
11
+ - /cli-documentation/v7/commands/config
12
+ - /cli-documentation/v7/commands/npm-config
13
+ - /cli-documentation/v7/config
14
+ - /cli-documentation/v7/npm-config
15
+ - /cli/v7/cli-commands/config
16
+ - /cli/v7/cli-commands/npm-config
17
+ - /cli/v7/commands/config
18
+ - /cli/v7/config
19
+ - /cli/v7/npm-config
20
---
21
22
### Synopsis
content/cli/v7/commands/npm-dedupe.md
+12
@@ -5,6 +5,18 @@ description: Reduce duplication in the package tree
5
github_repo: npm/cli
6
github_branch: v7
7
github_path: docs/content/commands/npm-dedupe.md
8
+redirect_from:
9
+ - /cli-documentation/v7/cli-commands/dedupe
10
+ - /cli-documentation/v7/cli-commands/npm-dedupe
11
+ - /cli-documentation/v7/commands/dedupe
12
+ - /cli-documentation/v7/commands/npm-dedupe
13
+ - /cli-documentation/v7/dedupe
14
+ - /cli-documentation/v7/npm-dedupe
15
+ - /cli/v7/cli-commands/dedupe
16
+ - /cli/v7/cli-commands/npm-dedupe
17
+ - /cli/v7/commands/dedupe
18
+ - /cli/v7/dedupe
19
+ - /cli/v7/npm-dedupe
20
---
21
22
### Synopsis
content/cli/v7/commands/npm-deprecate.md
+12
@@ -5,6 +5,18 @@ description: Deprecate a version of a package
5
github_repo: npm/cli
6
github_branch: v7
7
github_path: docs/content/commands/npm-deprecate.md
8
+redirect_from:
9
+ - /cli-documentation/v7/cli-commands/deprecate
10
+ - /cli-documentation/v7/cli-commands/npm-deprecate
11
+ - /cli-documentation/v7/commands/deprecate
12
+ - /cli-documentation/v7/commands/npm-deprecate
13
+ - /cli-documentation/v7/deprecate
14
+ - /cli-documentation/v7/npm-deprecate
15
+ - /cli/v7/cli-commands/deprecate
16
+ - /cli/v7/cli-commands/npm-deprecate
17
+ - /cli/v7/commands/deprecate
18
+ - /cli/v7/deprecate
19
+ - /cli/v7/npm-deprecate
20
---
21
22
### Synopsis
content/cli/v7/commands/npm-diff.md
+12
@@ -5,6 +5,18 @@ description: The registry diff command
5
github_repo: npm/cli
6
github_branch: v7
7
github_path: docs/content/commands/npm-diff.md
8
+redirect_from:
9
+ - /cli-documentation/v7/cli-commands/diff
10
+ - /cli-documentation/v7/cli-commands/npm-diff
11
+ - /cli-documentation/v7/commands/diff
12
+ - /cli-documentation/v7/commands/npm-diff
13
+ - /cli-documentation/v7/diff
14
+ - /cli-documentation/v7/npm-diff
15
+ - /cli/v7/cli-commands/diff
16
+ - /cli/v7/cli-commands/npm-diff
17
+ - /cli/v7/commands/diff
18
+ - /cli/v7/diff
19
+ - /cli/v7/npm-diff
20
---
21
22
### Synopsis
content/cli/v7/commands/npm-dist-tag.md
+12
@@ -5,6 +5,18 @@ description: Modify package distribution tags
5
github_repo: npm/cli
6
github_branch: v7
7
github_path: docs/content/commands/npm-dist-tag.md
8
+redirect_from:
9
+ - /cli-documentation/v7/cli-commands/dist-tag
10
+ - /cli-documentation/v7/cli-commands/npm-dist-tag
11
+ - /cli-documentation/v7/commands/dist-tag
12
+ - /cli-documentation/v7/commands/npm-dist-tag
13
+ - /cli-documentation/v7/dist-tag
14
+ - /cli-documentation/v7/npm-dist-tag
15
+ - /cli/v7/cli-commands/dist-tag
16
+ - /cli/v7/cli-commands/npm-dist-tag
17
+ - /cli/v7/commands/dist-tag
18
+ - /cli/v7/dist-tag
19
+ - /cli/v7/npm-dist-tag
20
---
21
22
### Synopsis
content/cli/v7/commands/npm-docs.md
+12
@@ -5,6 +5,18 @@ description: Open documentation for a package in a web browser
5
github_repo: npm/cli
6
github_branch: v7
7
github_path: docs/content/commands/npm-docs.md
8
+redirect_from:
9
+ - /cli-documentation/v7/cli-commands/docs
10
+ - /cli-documentation/v7/cli-commands/npm-docs
11
+ - /cli-documentation/v7/commands/docs
12
+ - /cli-documentation/v7/commands/npm-docs
13
+ - /cli-documentation/v7/docs
14
+ - /cli-documentation/v7/npm-docs
15
+ - /cli/v7/cli-commands/docs
16
+ - /cli/v7/cli-commands/npm-docs
17
+ - /cli/v7/commands/docs
18
+ - /cli/v7/docs
19
+ - /cli/v7/npm-docs
20
---
21
22
### Synopsis
content/cli/v7/commands/npm-doctor.md
+12
@@ -5,6 +5,18 @@ description: Check your npm environment
5
github_repo: npm/cli
6
github_branch: v7
7
github_path: docs/content/commands/npm-doctor.md
8
+redirect_from:
9
+ - /cli-documentation/v7/cli-commands/doctor
10
+ - /cli-documentation/v7/cli-commands/npm-doctor
11
+ - /cli-documentation/v7/commands/doctor
12
+ - /cli-documentation/v7/commands/npm-doctor
13
+ - /cli-documentation/v7/doctor
14
+ - /cli-documentation/v7/npm-doctor
15
+ - /cli/v7/cli-commands/doctor
16
+ - /cli/v7/cli-commands/npm-doctor
17
+ - /cli/v7/commands/doctor
18
+ - /cli/v7/doctor
19
+ - /cli/v7/npm-doctor
20
---
21
22
### Synopsis
content/cli/v7/commands/npm-edit.md
+12
@@ -5,6 +5,18 @@ description: Edit an installed package
5
github_repo: npm/cli
6
github_branch: v7
7
github_path: docs/content/commands/npm-edit.md
8
+redirect_from:
9
+ - /cli-documentation/v7/cli-commands/edit
10
+ - /cli-documentation/v7/cli-commands/npm-edit
11
+ - /cli-documentation/v7/commands/edit
12
+ - /cli-documentation/v7/commands/npm-edit
13
+ - /cli-documentation/v7/edit
14
+ - /cli-documentation/v7/npm-edit
15
+ - /cli/v7/cli-commands/edit
16
+ - /cli/v7/cli-commands/npm-edit
17
+ - /cli/v7/commands/edit
18
+ - /cli/v7/edit
19
+ - /cli/v7/npm-edit
20
---
21
22
### Synopsis
content/cli/v7/commands/npm-exec.md
+12
@@ -5,6 +5,18 @@ description: Run a command from a local or remote npm package
5
github_repo: npm/cli
6
github_branch: v7
7
github_path: docs/content/commands/npm-exec.md
8
+redirect_from:
9
+ - /cli-documentation/v7/cli-commands/exec
10
+ - /cli-documentation/v7/cli-commands/npm-exec
11
+ - /cli-documentation/v7/commands/exec
12
+ - /cli-documentation/v7/commands/npm-exec
13
+ - /cli-documentation/v7/exec
14
+ - /cli-documentation/v7/npm-exec
15
+ - /cli/v7/cli-commands/exec
16
+ - /cli/v7/cli-commands/npm-exec
17
+ - /cli/v7/commands/exec
18
+ - /cli/v7/exec
19
+ - /cli/v7/npm-exec
20
---
21
22
### Synopsis
content/cli/v7/commands/npm-explain.md
+12
@@ -5,6 +5,18 @@ description: Explain installed packages
5
github_repo: npm/cli
6
github_branch: v7
7
github_path: docs/content/commands/npm-explain.md
8
+redirect_from:
9
+ - /cli-documentation/v7/cli-commands/explain
10
+ - /cli-documentation/v7/cli-commands/npm-explain
11
+ - /cli-documentation/v7/commands/explain
12
+ - /cli-documentation/v7/commands/npm-explain
13
+ - /cli-documentation/v7/explain
14
+ - /cli-documentation/v7/npm-explain
15
+ - /cli/v7/cli-commands/explain
16
+ - /cli/v7/cli-commands/npm-explain
17
+ - /cli/v7/commands/explain
18
+ - /cli/v7/explain
19
+ - /cli/v7/npm-explain
20
---
21
22
### Synopsis
content/cli/v7/commands/npm-explore.md
+12
@@ -5,6 +5,18 @@ description: Browse an installed package
5
github_repo: npm/cli
6
github_branch: v7
7
github_path: docs/content/commands/npm-explore.md
8
+redirect_from:
9
+ - /cli-documentation/v7/cli-commands/explore
10
+ - /cli-documentation/v7/cli-commands/npm-explore
11
+ - /cli-documentation/v7/commands/explore
12
+ - /cli-documentation/v7/commands/npm-explore
13
+ - /cli-documentation/v7/explore
14
+ - /cli-documentation/v7/npm-explore
15
+ - /cli/v7/cli-commands/explore
16
+ - /cli/v7/cli-commands/npm-explore
17
+ - /cli/v7/commands/explore
18
+ - /cli/v7/explore
19
+ - /cli/v7/npm-explore
20
---
21
22
### Synopsis
content/cli/v7/commands/npm-find-dupes.md
+12
@@ -5,6 +5,18 @@ description: Find duplication in the package tree
5
github_repo: npm/cli
6
github_branch: v7
7
github_path: docs/content/commands/npm-find-dupes.md
8
+redirect_from:
9
+ - /cli-documentation/v7/cli-commands/find-dupes
10
+ - /cli-documentation/v7/cli-commands/npm-find-dupes
11
+ - /cli-documentation/v7/commands/find-dupes
12
+ - /cli-documentation/v7/commands/npm-find-dupes
13
+ - /cli-documentation/v7/find-dupes
14
+ - /cli-documentation/v7/npm-find-dupes
15
+ - /cli/v7/cli-commands/find-dupes
16
+ - /cli/v7/cli-commands/npm-find-dupes
17
+ - /cli/v7/commands/find-dupes
18
+ - /cli/v7/find-dupes
19
+ - /cli/v7/npm-find-dupes
20
---
21
22
### Synopsis
content/cli/v7/commands/npm-fund.md
+12
@@ -5,6 +5,18 @@ description: Retrieve funding information
5
github_repo: npm/cli
6
github_branch: v7
7
github_path: docs/content/commands/npm-fund.md
8
+redirect_from:
9
+ - /cli-documentation/v7/cli-commands/fund
10
+ - /cli-documentation/v7/cli-commands/npm-fund
11
+ - /cli-documentation/v7/commands/fund
12
+ - /cli-documentation/v7/commands/npm-fund
13
+ - /cli-documentation/v7/fund
14
+ - /cli-documentation/v7/npm-fund
15
+ - /cli/v7/cli-commands/fund
16
+ - /cli/v7/cli-commands/npm-fund
17
+ - /cli/v7/commands/fund
18
+ - /cli/v7/fund
19
+ - /cli/v7/npm-fund
20
---
21
22
### Synopsis
content/cli/v7/commands/npm-help-search.md
+12
@@ -5,6 +5,18 @@ description: Search npm help documentation
5
github_repo: npm/cli
6
github_branch: v7
7
github_path: docs/content/commands/npm-help-search.md
8
+redirect_from:
9
+ - /cli-documentation/v7/cli-commands/help-search
10
+ - /cli-documentation/v7/cli-commands/npm-help-search
11
+ - /cli-documentation/v7/commands/help-search
12
+ - /cli-documentation/v7/commands/npm-help-search
13
+ - /cli-documentation/v7/help-search
14
+ - /cli-documentation/v7/npm-help-search
15
+ - /cli/v7/cli-commands/help-search
16
+ - /cli/v7/cli-commands/npm-help-search
17
+ - /cli/v7/commands/help-search
18
+ - /cli/v7/help-search
19
+ - /cli/v7/npm-help-search
20
---
21
22
### Synopsis
content/cli/v7/commands/npm-help.md
+12
@@ -5,6 +5,18 @@ description: Get help on npm
5
github_repo: npm/cli
6
github_branch: v7
7
github_path: docs/content/commands/npm-help.md
8
+redirect_from:
9
+ - /cli-documentation/v7/cli-commands/help
10
+ - /cli-documentation/v7/cli-commands/npm-help
11
+ - /cli-documentation/v7/commands/help
12
+ - /cli-documentation/v7/commands/npm-help
13
+ - /cli-documentation/v7/help
14
+ - /cli-documentation/v7/npm-help
15
+ - /cli/v7/cli-commands/help
16
+ - /cli/v7/cli-commands/npm-help
17
+ - /cli/v7/commands/help
18
+ - /cli/v7/help
19
+ - /cli/v7/npm-help
20
---
21
22
### Synopsis
content/cli/v7/commands/npm-hook.md
+12
@@ -5,6 +5,18 @@ description: Manage registry hooks
5
github_repo: npm/cli
6
github_branch: v7
7
github_path: docs/content/commands/npm-hook.md
8
+redirect_from:
9
+ - /cli-documentation/v7/cli-commands/hook
10
+ - /cli-documentation/v7/cli-commands/npm-hook
11
+ - /cli-documentation/v7/commands/hook
12
+ - /cli-documentation/v7/commands/npm-hook
13
+ - /cli-documentation/v7/hook
14
+ - /cli-documentation/v7/npm-hook
15
+ - /cli/v7/cli-commands/hook
16
+ - /cli/v7/cli-commands/npm-hook
17
+ - /cli/v7/commands/hook
18
+ - /cli/v7/hook
19
+ - /cli/v7/npm-hook
20
---
21
22
### Synopsis
content/cli/v7/commands/npm-init.md
+12
@@ -5,6 +5,18 @@ description: Create a package.json file
5
github_repo: npm/cli
6
github_branch: v7
7
github_path: docs/content/commands/npm-init.md
8
+redirect_from:
9
+ - /cli-documentation/v7/cli-commands/init
10
+ - /cli-documentation/v7/cli-commands/npm-init
11
+ - /cli-documentation/v7/commands/init
12
+ - /cli-documentation/v7/commands/npm-init
13
+ - /cli-documentation/v7/init
14
+ - /cli-documentation/v7/npm-init
15
+ - /cli/v7/cli-commands/init
16
+ - /cli/v7/cli-commands/npm-init
17
+ - /cli/v7/commands/init
18
+ - /cli/v7/init
19
+ - /cli/v7/npm-init
20
---
21
22
### Synopsis
content/cli/v7/commands/npm-install-ci-test.md
+12
@@ -5,6 +5,18 @@ description: Install a project with a clean slate and run tests
5
github_repo: npm/cli
6
github_branch: v7
7
github_path: docs/content/commands/npm-install-ci-test.md
8
+redirect_from:
9
+ - /cli-documentation/v7/cli-commands/install-ci-test
10
+ - /cli-documentation/v7/cli-commands/npm-install-ci-test
11
+ - /cli-documentation/v7/commands/install-ci-test
12
+ - /cli-documentation/v7/commands/npm-install-ci-test
13
+ - /cli-documentation/v7/install-ci-test
14
+ - /cli-documentation/v7/npm-install-ci-test
15
+ - /cli/v7/cli-commands/install-ci-test
16
+ - /cli/v7/cli-commands/npm-install-ci-test
17
+ - /cli/v7/commands/install-ci-test
18
+ - /cli/v7/install-ci-test
19
+ - /cli/v7/npm-install-ci-test
20
---
21
22
### Synopsis
content/cli/v7/commands/npm-install-test.md
+12
@@ -5,6 +5,18 @@ description: Install package(s) and run tests
5
github_repo: npm/cli
6
github_branch: v7
7
github_path: docs/content/commands/npm-install-test.md
8
+redirect_from:
9
+ - /cli-documentation/v7/cli-commands/install-test
10
+ - /cli-documentation/v7/cli-commands/npm-install-test
11
+ - /cli-documentation/v7/commands/install-test
12
+ - /cli-documentation/v7/commands/npm-install-test
13
+ - /cli-documentation/v7/install-test
14
+ - /cli-documentation/v7/npm-install-test
15
+ - /cli/v7/cli-commands/install-test
16
+ - /cli/v7/cli-commands/npm-install-test
17
+ - /cli/v7/commands/install-test
18
+ - /cli/v7/install-test
19
+ - /cli/v7/npm-install-test
20
---
21
22
### Synopsis
content/cli/v7/commands/npm-install.md
+12
@@ -5,6 +5,18 @@ description: Install a package
5
github_repo: npm/cli
6
github_branch: v7
7
github_path: docs/content/commands/npm-install.md
8
+redirect_from:
9
+ - /cli-documentation/v7/cli-commands/install
10
+ - /cli-documentation/v7/cli-commands/npm-install
11
+ - /cli-documentation/v7/commands/install
12
+ - /cli-documentation/v7/commands/npm-install
13
+ - /cli-documentation/v7/install
14
+ - /cli-documentation/v7/npm-install
15
+ - /cli/v7/cli-commands/install
16
+ - /cli/v7/cli-commands/npm-install
17
+ - /cli/v7/commands/install
18
+ - /cli/v7/install
19
+ - /cli/v7/npm-install
20
---
21
22
### Synopsis
content/cli/v7/commands/npm-link.md
+12
@@ -5,6 +5,18 @@ description: Symlink a package folder
5
github_repo: npm/cli
6
github_branch: v7
7
github_path: docs/content/commands/npm-link.md
8
+redirect_from:
9
+ - /cli-documentation/v7/cli-commands/link
10
+ - /cli-documentation/v7/cli-commands/npm-link
11
+ - /cli-documentation/v7/commands/link
12
+ - /cli-documentation/v7/commands/npm-link
13
+ - /cli-documentation/v7/link
14
+ - /cli-documentation/v7/npm-link
15
+ - /cli/v7/cli-commands/link
16
+ - /cli/v7/cli-commands/npm-link
17
+ - /cli/v7/commands/link
18
+ - /cli/v7/link
19
+ - /cli/v7/npm-link
20
---
21
22
### Synopsis
content/cli/v7/commands/npm-logout.md
+12
@@ -5,6 +5,18 @@ description: Log out of the registry
5
github_repo: npm/cli
6
github_branch: v7
7
github_path: docs/content/commands/npm-logout.md
8
+redirect_from:
9
+ - /cli-documentation/v7/cli-commands/logout
10
+ - /cli-documentation/v7/cli-commands/npm-logout
11
+ - /cli-documentation/v7/commands/logout
12
+ - /cli-documentation/v7/commands/npm-logout
13
+ - /cli-documentation/v7/logout
14
+ - /cli-documentation/v7/npm-logout
15
+ - /cli/v7/cli-commands/logout
16
+ - /cli/v7/cli-commands/npm-logout
17
+ - /cli/v7/commands/logout
18
+ - /cli/v7/logout
19
+ - /cli/v7/npm-logout
20
---
21
22
### Synopsis
content/cli/v7/commands/npm-ls.md
+12
@@ -5,6 +5,18 @@ description: List installed packages
5
github_repo: npm/cli
6
github_branch: v7
7
github_path: docs/content/commands/npm-ls.md
8
+redirect_from:
9
+ - /cli-documentation/v7/cli-commands/ls
10
+ - /cli-documentation/v7/cli-commands/npm-ls
11
+ - /cli-documentation/v7/commands/ls
12
+ - /cli-documentation/v7/commands/npm-ls
13
+ - /cli-documentation/v7/ls
14
+ - /cli-documentation/v7/npm-ls
15
+ - /cli/v7/cli-commands/ls
16
+ - /cli/v7/cli-commands/npm-ls
17
+ - /cli/v7/commands/ls
18
+ - /cli/v7/ls
19
+ - /cli/v7/npm-ls
20
---
21
22
### Synopsis
content/cli/v7/commands/npm-org.md
+12
@@ -5,6 +5,18 @@ description: Manage orgs
5
github_repo: npm/cli
6
github_branch: v7
7
github_path: docs/content/commands/npm-org.md
8
+redirect_from:
9
+ - /cli-documentation/v7/cli-commands/npm-org
10
+ - /cli-documentation/v7/cli-commands/org
11
+ - /cli-documentation/v7/commands/npm-org
12
+ - /cli-documentation/v7/commands/org
13
+ - /cli-documentation/v7/npm-org
14
+ - /cli-documentation/v7/org
15
+ - /cli/v7/cli-commands/npm-org
16
+ - /cli/v7/cli-commands/org
17
+ - /cli/v7/commands/org
18
+ - /cli/v7/npm-org
19
+ - /cli/v7/org
20
---
21
22
### Synopsis
content/cli/v7/commands/npm-outdated.md
+12
@@ -5,6 +5,18 @@ description: Check for outdated packages
5
github_repo: npm/cli
6
github_branch: v7
7
github_path: docs/content/commands/npm-outdated.md
8
+redirect_from:
9
+ - /cli-documentation/v7/cli-commands/npm-outdated
10
+ - /cli-documentation/v7/cli-commands/outdated
11
+ - /cli-documentation/v7/commands/npm-outdated
12
+ - /cli-documentation/v7/commands/outdated
13
+ - /cli-documentation/v7/npm-outdated
14
+ - /cli-documentation/v7/outdated
15
+ - /cli/v7/cli-commands/npm-outdated
16
+ - /cli/v7/cli-commands/outdated
17
+ - /cli/v7/commands/outdated
18
+ - /cli/v7/npm-outdated
19
+ - /cli/v7/outdated
20
---
21
22
### Synopsis
content/cli/v7/commands/npm-owner.md
+12
@@ -5,6 +5,18 @@ description: Manage package owners
5
github_repo: npm/cli
6
github_branch: v7
7
github_path: docs/content/commands/npm-owner.md
8
+redirect_from:
9
+ - /cli-documentation/v7/cli-commands/npm-owner
10
+ - /cli-documentation/v7/cli-commands/owner
11
+ - /cli-documentation/v7/commands/npm-owner
12
+ - /cli-documentation/v7/commands/owner
13
+ - /cli-documentation/v7/npm-owner
14
+ - /cli-documentation/v7/owner
15
+ - /cli/v7/cli-commands/npm-owner
16
+ - /cli/v7/cli-commands/owner
17
+ - /cli/v7/commands/owner
18
+ - /cli/v7/npm-owner
19
+ - /cli/v7/owner
20
---
21
22
### Synopsis
content/cli/v7/commands/npm-pack.md
+12
@@ -5,6 +5,18 @@ description: Create a tarball from a package
5
github_repo: npm/cli
6
github_branch: v7
7
github_path: docs/content/commands/npm-pack.md
8
+redirect_from:
9
+ - /cli-documentation/v7/cli-commands/npm-pack
10
+ - /cli-documentation/v7/cli-commands/pack
11
+ - /cli-documentation/v7/commands/npm-pack
12
+ - /cli-documentation/v7/commands/pack
13
+ - /cli-documentation/v7/npm-pack
14
+ - /cli-documentation/v7/pack
15
+ - /cli/v7/cli-commands/npm-pack
16
+ - /cli/v7/cli-commands/pack
17
+ - /cli/v7/commands/pack
18
+ - /cli/v7/npm-pack
19
+ - /cli/v7/pack
20
---
21
22
### Synopsis
content/cli/v7/commands/npm-ping.md
+12
@@ -5,6 +5,18 @@ description: Ping npm registry
5
github_repo: npm/cli
6
github_branch: v7
7
github_path: docs/content/commands/npm-ping.md
8
+redirect_from:
9
+ - /cli-documentation/v7/cli-commands/npm-ping
10
+ - /cli-documentation/v7/cli-commands/ping
11
+ - /cli-documentation/v7/commands/npm-ping
12
+ - /cli-documentation/v7/commands/ping
13
+ - /cli-documentation/v7/npm-ping
14
+ - /cli-documentation/v7/ping
15
+ - /cli/v7/cli-commands/npm-ping
16
+ - /cli/v7/cli-commands/ping
17
+ - /cli/v7/commands/ping
18
+ - /cli/v7/npm-ping
19
+ - /cli/v7/ping
20
---
21
22
### Synopsis
content/cli/v7/commands/npm-pkg.md
+12
@@ -5,6 +5,18 @@ description: Manages your package.json
5
github_repo: npm/cli
6
github_branch: v7
7
github_path: docs/content/commands/npm-pkg.md
8
+redirect_from:
9
+ - /cli-documentation/v7/cli-commands/npm-pkg
10
+ - /cli-documentation/v7/cli-commands/pkg
11
+ - /cli-documentation/v7/commands/npm-pkg
12
+ - /cli-documentation/v7/commands/pkg
13
+ - /cli-documentation/v7/npm-pkg
14
+ - /cli-documentation/v7/pkg
15
+ - /cli/v7/cli-commands/npm-pkg
16
+ - /cli/v7/cli-commands/pkg
17
+ - /cli/v7/commands/pkg
18
+ - /cli/v7/npm-pkg
19
+ - /cli/v7/pkg
20
---
21
22
### Synopsis
content/cli/v7/commands/npm-prefix.md
+12
@@ -5,6 +5,18 @@ description: Display prefix
5
github_repo: npm/cli
6
github_branch: v7
7
github_path: docs/content/commands/npm-prefix.md
8
+redirect_from:
9
+ - /cli-documentation/v7/cli-commands/npm-prefix
10
+ - /cli-documentation/v7/cli-commands/prefix
11
+ - /cli-documentation/v7/commands/npm-prefix
12
+ - /cli-documentation/v7/commands/prefix
13
+ - /cli-documentation/v7/npm-prefix
14
+ - /cli-documentation/v7/prefix
15
+ - /cli/v7/cli-commands/npm-prefix
16
+ - /cli/v7/cli-commands/prefix
17
+ - /cli/v7/commands/prefix
18
+ - /cli/v7/npm-prefix
19
+ - /cli/v7/prefix
20
---
21
22
### Synopsis
content/cli/v7/commands/npm-profile.md
+12
@@ -5,6 +5,18 @@ description: Change settings on your registry profile
5
github_repo: npm/cli
6
github_branch: v7
7
github_path: docs/content/commands/npm-profile.md
8
+redirect_from:
9
+ - /cli-documentation/v7/cli-commands/npm-profile
10
+ - /cli-documentation/v7/cli-commands/profile
11
+ - /cli-documentation/v7/commands/npm-profile
12
+ - /cli-documentation/v7/commands/profile
13
+ - /cli-documentation/v7/npm-profile
14
+ - /cli-documentation/v7/profile
15
+ - /cli/v7/cli-commands/npm-profile
16
+ - /cli/v7/cli-commands/profile
17
+ - /cli/v7/commands/profile
18
+ - /cli/v7/npm-profile
19
+ - /cli/v7/profile
20
---
21
22
### Synopsis
content/cli/v7/commands/npm-prune.md
+12
@@ -5,6 +5,18 @@ description: Remove extraneous packages
5
github_repo: npm/cli
6
github_branch: v7
7
github_path: docs/content/commands/npm-prune.md
8
+redirect_from:
9
+ - /cli-documentation/v7/cli-commands/npm-prune
10
+ - /cli-documentation/v7/cli-commands/prune
11
+ - /cli-documentation/v7/commands/npm-prune
12
+ - /cli-documentation/v7/commands/prune
13
+ - /cli-documentation/v7/npm-prune
14
+ - /cli-documentation/v7/prune
15
+ - /cli/v7/cli-commands/npm-prune
16
+ - /cli/v7/cli-commands/prune
17
+ - /cli/v7/commands/prune
18
+ - /cli/v7/npm-prune
19
+ - /cli/v7/prune
20
---
21
22
### Synopsis
content/cli/v7/commands/npm-publish.md
+12
@@ -5,6 +5,18 @@ description: Publish a package
5
github_repo: npm/cli
6
github_branch: v7
7
github_path: docs/content/commands/npm-publish.md
8
+redirect_from:
9
+ - /cli-documentation/v7/cli-commands/npm-publish
10
+ - /cli-documentation/v7/cli-commands/publish
11
+ - /cli-documentation/v7/commands/npm-publish
12
+ - /cli-documentation/v7/commands/publish
13
+ - /cli-documentation/v7/npm-publish
14
+ - /cli-documentation/v7/publish
15
+ - /cli/v7/cli-commands/npm-publish
16
+ - /cli/v7/cli-commands/publish
17
+ - /cli/v7/commands/publish
18
+ - /cli/v7/npm-publish
19
+ - /cli/v7/publish
20
---
21
22
### Synopsis
content/cli/v7/commands/npm-rebuild.md
+12
@@ -5,6 +5,18 @@ description: Rebuild a package
5
github_repo: npm/cli
6
github_branch: v7
7
github_path: docs/content/commands/npm-rebuild.md
8
+redirect_from:
9
+ - /cli-documentation/v7/cli-commands/npm-rebuild
10
+ - /cli-documentation/v7/cli-commands/rebuild
11
+ - /cli-documentation/v7/commands/npm-rebuild
12
+ - /cli-documentation/v7/commands/rebuild
13
+ - /cli-documentation/v7/npm-rebuild
14
+ - /cli-documentation/v7/rebuild
15
+ - /cli/v7/cli-commands/npm-rebuild
16
+ - /cli/v7/cli-commands/rebuild
17
+ - /cli/v7/commands/rebuild
18
+ - /cli/v7/npm-rebuild
19
+ - /cli/v7/rebuild
20
---
21
22
### Synopsis
content/cli/v7/commands/npm-repo.md
+12
@@ -5,6 +5,18 @@ description: Open package repository page in the browser
5
github_repo: npm/cli
6
github_branch: v7
7
github_path: docs/content/commands/npm-repo.md
8
+redirect_from:
9
+ - /cli-documentation/v7/cli-commands/npm-repo
10
+ - /cli-documentation/v7/cli-commands/repo
11
+ - /cli-documentation/v7/commands/npm-repo
12
+ - /cli-documentation/v7/commands/repo
13
+ - /cli-documentation/v7/npm-repo
14
+ - /cli-documentation/v7/repo
15
+ - /cli/v7/cli-commands/npm-repo
16
+ - /cli/v7/cli-commands/repo
17
+ - /cli/v7/commands/repo
18
+ - /cli/v7/npm-repo
19
+ - /cli/v7/repo
20
---
21
22
### Synopsis
content/cli/v7/commands/npm-restart.md
+12
@@ -5,6 +5,18 @@ description: Restart a package
5
github_repo: npm/cli
6
github_branch: v7
7
github_path: docs/content/commands/npm-restart.md
8
+redirect_from:
9
+ - /cli-documentation/v7/cli-commands/npm-restart
10
+ - /cli-documentation/v7/cli-commands/restart
11
+ - /cli-documentation/v7/commands/npm-restart
12
+ - /cli-documentation/v7/commands/restart
13
+ - /cli-documentation/v7/npm-restart
14
+ - /cli-documentation/v7/restart
15
+ - /cli/v7/cli-commands/npm-restart
16
+ - /cli/v7/cli-commands/restart
17
+ - /cli/v7/commands/restart
18
+ - /cli/v7/npm-restart
19
+ - /cli/v7/restart
20
---
21
22
### Synopsis
content/cli/v7/commands/npm-root.md
+12
@@ -5,6 +5,18 @@ description: Display npm root
5
github_repo: npm/cli
6
github_branch: v7
7
github_path: docs/content/commands/npm-root.md
8
+redirect_from:
9
+ - /cli-documentation/v7/cli-commands/npm-root
10
+ - /cli-documentation/v7/cli-commands/root
11
+ - /cli-documentation/v7/commands/npm-root
12
+ - /cli-documentation/v7/commands/root
13
+ - /cli-documentation/v7/npm-root
14
+ - /cli-documentation/v7/root
15
+ - /cli/v7/cli-commands/npm-root
16
+ - /cli/v7/cli-commands/root
17
+ - /cli/v7/commands/root
18
+ - /cli/v7/npm-root
19
+ - /cli/v7/root
20
---
21
22
### Synopsis
content/cli/v7/commands/npm-run-script.md
+12
@@ -5,6 +5,18 @@ description: Run arbitrary package scripts
5
github_repo: npm/cli
6
github_branch: v7
7
github_path: docs/content/commands/npm-run-script.md
8
+redirect_from:
9
+ - /cli-documentation/v7/cli-commands/npm-run-script
10
+ - /cli-documentation/v7/cli-commands/run-script
11
+ - /cli-documentation/v7/commands/npm-run-script
12
+ - /cli-documentation/v7/commands/run-script
13
+ - /cli-documentation/v7/npm-run-script
14
+ - /cli-documentation/v7/run-script
15
+ - /cli/v7/cli-commands/npm-run-script
16
+ - /cli/v7/cli-commands/run-script
17
+ - /cli/v7/commands/run-script
18
+ - /cli/v7/npm-run-script
19
+ - /cli/v7/run-script
20
---
21
22
### Synopsis
content/cli/v7/commands/npm-search.md
+12
@@ -5,6 +5,18 @@ description: Search for packages
5
github_repo: npm/cli
6
github_branch: v7
7
github_path: docs/content/commands/npm-search.md
8
+redirect_from:
9
+ - /cli-documentation/v7/cli-commands/npm-search
10
+ - /cli-documentation/v7/cli-commands/search
11
+ - /cli-documentation/v7/commands/npm-search
12
+ - /cli-documentation/v7/commands/search
13
+ - /cli-documentation/v7/npm-search
14
+ - /cli-documentation/v7/search
15
+ - /cli/v7/cli-commands/npm-search
16
+ - /cli/v7/cli-commands/search
17
+ - /cli/v7/commands/search
18
+ - /cli/v7/npm-search
19
+ - /cli/v7/search
20
---
21
22
### Synopsis
content/cli/v7/commands/npm-set-script.md
+12
@@ -5,6 +5,18 @@ description: Set tasks in the scripts section of package.json
5
github_repo: npm/cli
6
github_branch: v7
7
github_path: docs/content/commands/npm-set-script.md
8
+redirect_from:
9
+ - /cli-documentation/v7/cli-commands/npm-set-script
10
+ - /cli-documentation/v7/cli-commands/set-script
11
+ - /cli-documentation/v7/commands/npm-set-script
12
+ - /cli-documentation/v7/commands/set-script
13
+ - /cli-documentation/v7/npm-set-script
14
+ - /cli-documentation/v7/set-script
15
+ - /cli/v7/cli-commands/npm-set-script
16
+ - /cli/v7/cli-commands/set-script
17
+ - /cli/v7/commands/set-script
18
+ - /cli/v7/npm-set-script
19
+ - /cli/v7/set-script
20
---
21
22
### Synopsis
content/cli/v7/commands/npm-shrinkwrap.md
+12
@@ -5,6 +5,18 @@ description: Lock down dependency versions for publication
5
github_repo: npm/cli
6
github_branch: v7
7
github_path: docs/content/commands/npm-shrinkwrap.md
8
+redirect_from:
9
+ - /cli-documentation/v7/cli-commands/npm-shrinkwrap
10
+ - /cli-documentation/v7/cli-commands/shrinkwrap
11
+ - /cli-documentation/v7/commands/npm-shrinkwrap
12
+ - /cli-documentation/v7/commands/shrinkwrap
13
+ - /cli-documentation/v7/npm-shrinkwrap
14
+ - /cli-documentation/v7/shrinkwrap
15
+ - /cli/v7/cli-commands/npm-shrinkwrap
16
+ - /cli/v7/cli-commands/shrinkwrap
17
+ - /cli/v7/commands/shrinkwrap
18
+ - /cli/v7/npm-shrinkwrap
19
+ - /cli/v7/shrinkwrap
20
---
21
22
### Synopsis
content/cli/v7/commands/npm-star.md
+12
@@ -5,6 +5,18 @@ description: Mark your favorite packages
5
github_repo: npm/cli
6
github_branch: v7
7
github_path: docs/content/commands/npm-star.md
8
+redirect_from:
9
+ - /cli-documentation/v7/cli-commands/npm-star
10
+ - /cli-documentation/v7/cli-commands/star
11
+ - /cli-documentation/v7/commands/npm-star
12
+ - /cli-documentation/v7/commands/star
13
+ - /cli-documentation/v7/npm-star
14
+ - /cli-documentation/v7/star
15
+ - /cli/v7/cli-commands/npm-star
16
+ - /cli/v7/cli-commands/star
17
+ - /cli/v7/commands/star
18
+ - /cli/v7/npm-star
19
+ - /cli/v7/star
20
---
21
22
### Synopsis
content/cli/v7/commands/npm-stars.md
+12
@@ -5,6 +5,18 @@ description: View packages marked as favorites
5
github_repo: npm/cli
6
github_branch: v7
7
github_path: docs/content/commands/npm-stars.md
8
+redirect_from:
9
+ - /cli-documentation/v7/cli-commands/npm-stars
10
+ - /cli-documentation/v7/cli-commands/stars
11
+ - /cli-documentation/v7/commands/npm-stars
12
+ - /cli-documentation/v7/commands/stars
13
+ - /cli-documentation/v7/npm-stars
14
+ - /cli-documentation/v7/stars
15
+ - /cli/v7/cli-commands/npm-stars
16
+ - /cli/v7/cli-commands/stars
17
+ - /cli/v7/commands/stars
18
+ - /cli/v7/npm-stars
19
+ - /cli/v7/stars
20
---
21
22
### Synopsis
content/cli/v7/commands/npm-start.md
+12
@@ -5,6 +5,18 @@ description: Start a package
5
github_repo: npm/cli
6
github_branch: v7
7
github_path: docs/content/commands/npm-start.md
8
+redirect_from:
9
+ - /cli-documentation/v7/cli-commands/npm-start
10
+ - /cli-documentation/v7/cli-commands/start
11
+ - /cli-documentation/v7/commands/npm-start
12
+ - /cli-documentation/v7/commands/start
13
+ - /cli-documentation/v7/npm-start
14
+ - /cli-documentation/v7/start
15
+ - /cli/v7/cli-commands/npm-start
16
+ - /cli/v7/cli-commands/start
17
+ - /cli/v7/commands/start
18
+ - /cli/v7/npm-start
19
+ - /cli/v7/start
20
---
21
22
### Synopsis
content/cli/v7/commands/npm-stop.md
+12
@@ -5,6 +5,18 @@ description: Stop a package
5
github_repo: npm/cli
6
github_branch: v7
7
github_path: docs/content/commands/npm-stop.md
8
+redirect_from:
9
+ - /cli-documentation/v7/cli-commands/npm-stop
10
+ - /cli-documentation/v7/cli-commands/stop
11
+ - /cli-documentation/v7/commands/npm-stop
12
+ - /cli-documentation/v7/commands/stop
13
+ - /cli-documentation/v7/npm-stop
14
+ - /cli-documentation/v7/stop
15
+ - /cli/v7/cli-commands/npm-stop
16
+ - /cli/v7/cli-commands/stop
17
+ - /cli/v7/commands/stop
18
+ - /cli/v7/npm-stop
19
+ - /cli/v7/stop
20
---
21
22
### Synopsis
content/cli/v7/commands/npm-team.md
+12
@@ -5,6 +5,18 @@ description: Manage organization teams and team memberships
5
github_repo: npm/cli
6
github_branch: v7
7
github_path: docs/content/commands/npm-team.md
8
+redirect_from:
9
+ - /cli-documentation/v7/cli-commands/npm-team
10
+ - /cli-documentation/v7/cli-commands/team
11
+ - /cli-documentation/v7/commands/npm-team
12
+ - /cli-documentation/v7/commands/team
13
+ - /cli-documentation/v7/npm-team
14
+ - /cli-documentation/v7/team
15
+ - /cli/v7/cli-commands/npm-team
16
+ - /cli/v7/cli-commands/team
17
+ - /cli/v7/commands/team
18
+ - /cli/v7/npm-team
19
+ - /cli/v7/team
20
---
21
22
### Synopsis
content/cli/v7/commands/npm-test.md
+12
@@ -5,6 +5,18 @@ description: Test a package
5
github_repo: npm/cli
6
github_branch: v7
7
github_path: docs/content/commands/npm-test.md
8
+redirect_from:
9
+ - /cli-documentation/v7/cli-commands/npm-test
10
+ - /cli-documentation/v7/cli-commands/test
11
+ - /cli-documentation/v7/commands/npm-test
12
+ - /cli-documentation/v7/commands/test
13
+ - /cli-documentation/v7/npm-test
14
+ - /cli-documentation/v7/test
15
+ - /cli/v7/cli-commands/npm-test
16
+ - /cli/v7/cli-commands/test
17
+ - /cli/v7/commands/test
18
+ - /cli/v7/npm-test
19
+ - /cli/v7/test
20
---
21
22
### Synopsis
content/cli/v7/commands/npm-token.md
+12
@@ -5,6 +5,18 @@ description: Manage your authentication tokens
5
github_repo: npm/cli
6
github_branch: v7
7
github_path: docs/content/commands/npm-token.md
8
+redirect_from:
9
+ - /cli-documentation/v7/cli-commands/npm-token
10
+ - /cli-documentation/v7/cli-commands/token
11
+ - /cli-documentation/v7/commands/npm-token
12
+ - /cli-documentation/v7/commands/token
13
+ - /cli-documentation/v7/npm-token
14
+ - /cli-documentation/v7/token
15
+ - /cli/v7/cli-commands/npm-token
16
+ - /cli/v7/cli-commands/token
17
+ - /cli/v7/commands/token
18
+ - /cli/v7/npm-token
19
+ - /cli/v7/token
20
---
21
22
### Synopsis
content/cli/v7/commands/npm-uninstall.md
+12
@@ -5,6 +5,18 @@ description: Remove a package
5
github_repo: npm/cli
6
github_branch: v7
7
github_path: docs/content/commands/npm-uninstall.md
8
+redirect_from:
9
+ - /cli-documentation/v7/cli-commands/npm-uninstall
10
+ - /cli-documentation/v7/cli-commands/uninstall
11
+ - /cli-documentation/v7/commands/npm-uninstall
12
+ - /cli-documentation/v7/commands/uninstall
13
+ - /cli-documentation/v7/npm-uninstall
14
+ - /cli-documentation/v7/uninstall
15
+ - /cli/v7/cli-commands/npm-uninstall
16
+ - /cli/v7/cli-commands/uninstall
17
+ - /cli/v7/commands/uninstall
18
+ - /cli/v7/npm-uninstall
19
+ - /cli/v7/uninstall
20
---
21
22
### Synopsis
content/cli/v7/commands/npm-unpublish.md
+12
@@ -5,6 +5,18 @@ description: Remove a package from the registry
5
github_repo: npm/cli
6
github_branch: v7
7
github_path: docs/content/commands/npm-unpublish.md
8
+redirect_from:
9
+ - /cli-documentation/v7/cli-commands/npm-unpublish
10
+ - /cli-documentation/v7/cli-commands/unpublish
11
+ - /cli-documentation/v7/commands/npm-unpublish
12
+ - /cli-documentation/v7/commands/unpublish
13
+ - /cli-documentation/v7/npm-unpublish
14
+ - /cli-documentation/v7/unpublish
15
+ - /cli/v7/cli-commands/npm-unpublish
16
+ - /cli/v7/cli-commands/unpublish
17
+ - /cli/v7/commands/unpublish
18
+ - /cli/v7/npm-unpublish
19
+ - /cli/v7/unpublish
20
---
21
22
### Synopsis
content/cli/v7/commands/npm-unstar.md
+12
@@ -5,6 +5,18 @@ description: Remove an item from your favorite packages
5
github_repo: npm/cli
6
github_branch: v7
7
github_path: docs/content/commands/npm-unstar.md
8
+redirect_from:
9
+ - /cli-documentation/v7/cli-commands/npm-unstar
10
+ - /cli-documentation/v7/cli-commands/unstar
11
+ - /cli-documentation/v7/commands/npm-unstar
12
+ - /cli-documentation/v7/commands/unstar
13
+ - /cli-documentation/v7/npm-unstar
14
+ - /cli-documentation/v7/unstar
15
+ - /cli/v7/cli-commands/npm-unstar
16
+ - /cli/v7/cli-commands/unstar
17
+ - /cli/v7/commands/unstar
18
+ - /cli/v7/npm-unstar
19
+ - /cli/v7/unstar
20
---
21
22
### Synopsis
content/cli/v7/commands/npm-update.md
+12
@@ -5,6 +5,18 @@ description: Update packages
5
github_repo: npm/cli
6
github_branch: v7
7
github_path: docs/content/commands/npm-update.md
8
+redirect_from:
9
+ - /cli-documentation/v7/cli-commands/npm-update
10
+ - /cli-documentation/v7/cli-commands/update
11
+ - /cli-documentation/v7/commands/npm-update
12
+ - /cli-documentation/v7/commands/update
13
+ - /cli-documentation/v7/npm-update
14
+ - /cli-documentation/v7/update
15
+ - /cli/v7/cli-commands/npm-update
16
+ - /cli/v7/cli-commands/update
17
+ - /cli/v7/commands/update
18
+ - /cli/v7/npm-update
19
+ - /cli/v7/update
20
---
21
22
### Synopsis
content/cli/v7/commands/npm-version.md
+12
@@ -5,6 +5,18 @@ description: Bump a package version
5
github_repo: npm/cli
6
github_branch: v7
7
github_path: docs/content/commands/npm-version.md
8
+redirect_from:
9
+ - /cli-documentation/v7/cli-commands/npm-version
10
+ - /cli-documentation/v7/cli-commands/version
11
+ - /cli-documentation/v7/commands/npm-version
12
+ - /cli-documentation/v7/commands/version
13
+ - /cli-documentation/v7/npm-version
14
+ - /cli-documentation/v7/version
15
+ - /cli/v7/cli-commands/npm-version
16
+ - /cli/v7/cli-commands/version
17
+ - /cli/v7/commands/version
18
+ - /cli/v7/npm-version
19
+ - /cli/v7/version
20
---
21
22
### Synopsis
content/cli/v7/commands/npm-view.md
+12
@@ -5,6 +5,18 @@ description: View registry info
5
github_repo: npm/cli
6
github_branch: v7
7
github_path: docs/content/commands/npm-view.md
8
+redirect_from:
9
+ - /cli-documentation/v7/cli-commands/npm-view
10
+ - /cli-documentation/v7/cli-commands/view
11
+ - /cli-documentation/v7/commands/npm-view
12
+ - /cli-documentation/v7/commands/view
13
+ - /cli-documentation/v7/npm-view
14
+ - /cli-documentation/v7/view
15
+ - /cli/v7/cli-commands/npm-view
16
+ - /cli/v7/cli-commands/view
17
+ - /cli/v7/commands/view
18
+ - /cli/v7/npm-view
19
+ - /cli/v7/view
20
---
21
22
### Synopsis
content/cli/v7/commands/npm-whoami.md
+12
@@ -5,6 +5,18 @@ description: Display npm username
5
github_repo: npm/cli
6
github_branch: v7
7
github_path: docs/content/commands/npm-whoami.md
8
+redirect_from:
9
+ - /cli-documentation/v7/cli-commands/npm-whoami
10
+ - /cli-documentation/v7/cli-commands/whoami
11
+ - /cli-documentation/v7/commands/npm-whoami
12
+ - /cli-documentation/v7/commands/whoami
13
+ - /cli-documentation/v7/npm-whoami
14
+ - /cli-documentation/v7/whoami
15
+ - /cli/v7/cli-commands/npm-whoami
16
+ - /cli/v7/cli-commands/whoami
17
+ - /cli/v7/commands/whoami
18
+ - /cli/v7/npm-whoami
19
+ - /cli/v7/whoami
20
---
21
22
### Synopsis
content/cli/v7/commands/npm.md
+6
@@ -5,6 +5,12 @@ description: javascript package manager
5
github_repo: npm/cli
6
github_branch: v7
7
github_path: docs/content/commands/npm.md
8
+redirect_from:
9
+ - /cli-documentation/v7/cli-commands/npm
10
+ - /cli-documentation/v7/commands/npm
11
+ - /cli-documentation/v7/npm
12
+ - /cli/v7/cli-commands/npm
13
+ - /cli/v7/npm
14
---
15
16
### Synopsis
content/cli/v7/commands/npx.md
+6
@@ -5,6 +5,12 @@ description: Run a command from a local or remote npm package
5
github_repo: npm/cli
6
github_branch: v7
7
github_path: docs/content/commands/npx.md
8
+redirect_from:
9
+ - /cli-documentation/v7/cli-commands/npx
10
+ - /cli-documentation/v7/commands/npx
11
+ - /cli-documentation/v7/npx
12
+ - /cli/v7/cli-commands/npx
13
+ - /cli/v7/npx
14
---
15
16
### Synopsis
content/cli/v7/configuring-npm/folders.md
+4
@@ -5,6 +5,10 @@ description: Folder Structures Used by npm
5
github_repo: npm/cli
6
github_branch: v7
7
github_path: docs/content/configuring-npm/folders.md
8
+redirect_from:
9
+ - /cli-documentation/v7/configuring-npm/folders
10
+ - /cli-documentation/v7/files/folders
11
+ - /cli/v7/files/folders
12
---
13
14
### Description
content/cli/v7/configuring-npm/index.mdx
+8
@@ -3,6 +3,14 @@ title: Configuring npm
3
github_repo: npm/cli
4
github_branch: v7
5
github_path: docs/nav.yml
6
+redirect_from:
7
+ - /cli-documentation/v7/configuring-npm
8
+ - /cli-documentation/v7/configuring-npm/index
9
+ - /cli-documentation/v7/files
10
+ - /cli-documentation/v7/files/index
11
+ - /cli/v7/configuring-npm/index
12
+ - /cli/v7/files
13
+ - /cli/v7/files/index
14
---
15
16
<Index depth="1" />
content/cli/v7/configuring-npm/install.md
+4
@@ -5,6 +5,10 @@ description: Download and install node and npm
5
github_repo: npm/cli
6
github_branch: v7
7
github_path: docs/content/configuring-npm/install.md
8
+redirect_from:
9
+ - /cli-documentation/v7/configuring-npm/install
10
+ - /cli-documentation/v7/files/install
11
+ - /cli/v7/files/install
12
---
13
14
### Description
content/cli/v7/configuring-npm/npm-shrinkwrap-json.md
+8
@@ -5,6 +5,14 @@ description: A publishable lockfile
5
github_repo: npm/cli
6
github_branch: v7
7
github_path: docs/content/configuring-npm/npm-shrinkwrap-json.md
8
+redirect_from:
9
+ - /cli-documentation/v7/configuring-npm/npm-shrinkwrap-json
10
+ - /cli-documentation/v7/configuring-npm/npm-shrinkwrap.json
11
+ - /cli-documentation/v7/files/npm-shrinkwrap-json
12
+ - /cli-documentation/v7/files/npm-shrinkwrap.json
13
+ - /cli/v7/configuring-npm/npm-shrinkwrap.json
14
+ - /cli/v7/files/npm-shrinkwrap-json
15
+ - /cli/v7/files/npm-shrinkwrap.json
16
---
17
18
### Description
content/cli/v7/configuring-npm/npmrc.md
+4
@@ -5,6 +5,10 @@ description: The npm config files
5
github_repo: npm/cli
6
github_branch: v7
7
github_path: docs/content/configuring-npm/npmrc.md
8
+redirect_from:
9
+ - /cli-documentation/v7/configuring-npm/npmrc
10
+ - /cli-documentation/v7/files/npmrc
11
+ - /cli/v7/files/npmrc
12
---
13
14
### Description
content/cli/v7/configuring-npm/package-json.md
+8
@@ -5,6 +5,14 @@ description: Specifics of npm's package.json handling
5
github_repo: npm/cli
6
github_branch: v7
7
github_path: docs/content/configuring-npm/package-json.md
8
+redirect_from:
9
+ - /cli-documentation/v7/configuring-npm/package-json
10
+ - /cli-documentation/v7/configuring-npm/package.json
11
+ - /cli-documentation/v7/files/package-json
12
+ - /cli-documentation/v7/files/package.json
13
+ - /cli/v7/configuring-npm/package.json
14
+ - /cli/v7/files/package-json
15
+ - /cli/v7/files/package.json
16
---
17
18
### Description
content/cli/v7/configuring-npm/package-lock-json.md
+8
@@ -5,6 +5,14 @@ description: A manifestation of the manifest
5
github_repo: npm/cli
6
github_branch: v7
7
github_path: docs/content/configuring-npm/package-lock-json.md
8
+redirect_from:
9
+ - /cli-documentation/v7/configuring-npm/package-lock-json
10
+ - /cli-documentation/v7/configuring-npm/package-lock.json
11
+ - /cli-documentation/v7/files/package-lock-json
12
+ - /cli-documentation/v7/files/package-lock.json
13
+ - /cli/v7/configuring-npm/package-lock.json
14
+ - /cli/v7/files/package-lock-json
15
+ - /cli/v7/files/package-lock.json
16
---
17
18
### Description
content/cli/v7/index.mdx
+4
@@ -3,6 +3,10 @@ title: npm CLI
3
github_repo: npm/cli
4
github_branch: v7
5
github_path: docs/nav.yml
6
+redirect_from:
7
+ - /cli-documentation/v7
8
+ - /cli-documentation/v7/index
9
+ - /cli/v7/index
10
---
11
12
<Index depth="1" />
content/cli/v7/using-npm/config.md
+4
@@ -5,6 +5,10 @@ description: More than you probably want to know about npm configuration
5
github_repo: npm/cli
6
github_branch: v7
7
github_path: docs/content/using-npm/config.md
8
+redirect_from:
9
+ - /cli-documentation/v7/misc/config
10
+ - /cli-documentation/v7/using-npm/config
11
+ - /cli/v7/misc/config
12
---
13
14
### Description
content/cli/v7/using-npm/developers.md
+4
@@ -5,6 +5,10 @@ description: Developer Guide
5
github_repo: npm/cli
6
github_branch: v7
7
github_path: docs/content/using-npm/developers.md
8
+redirect_from:
9
+ - /cli-documentation/v7/misc/developers
10
+ - /cli-documentation/v7/using-npm/developers
11
+ - /cli/v7/misc/developers
12
---
13
14
### Description
content/cli/v7/using-npm/index.mdx
+8
@@ -3,6 +3,14 @@ title: Using npm
3
github_repo: npm/cli
4
github_branch: v7
5
github_path: docs/nav.yml
6
+redirect_from:
7
+ - /cli-documentation/v7/misc
8
+ - /cli-documentation/v7/misc/index
9
+ - /cli-documentation/v7/using-npm
10
+ - /cli-documentation/v7/using-npm/index
11
+ - /cli/v7/misc
12
+ - /cli/v7/misc/index
13
+ - /cli/v7/using-npm/index
14
---
15
16
<Index depth="1" />
content/cli/v7/using-npm/orgs.md
+4
@@ -5,6 +5,10 @@ description: Working with Teams & Orgs
5
github_repo: npm/cli
6
github_branch: v7
7
github_path: docs/content/using-npm/orgs.md
8
+redirect_from:
9
+ - /cli-documentation/v7/misc/orgs
10
+ - /cli-documentation/v7/using-npm/orgs
11
+ - /cli/v7/misc/orgs
12
---
13
14
### Description
content/cli/v7/using-npm/registry.md
+4
@@ -5,6 +5,10 @@ description: The JavaScript Package Registry
5
github_repo: npm/cli
6
github_branch: v7
7
github_path: docs/content/using-npm/registry.md
8
+redirect_from:
9
+ - /cli-documentation/v7/misc/registry
10
+ - /cli-documentation/v7/using-npm/registry
11
+ - /cli/v7/misc/registry
12
---
13
14
### Description
content/cli/v7/using-npm/removal.md
+8
@@ -5,6 +5,14 @@ description: Cleaning the Slate
5
github_repo: npm/cli
6
github_branch: v7
7
github_path: docs/content/using-npm/removal.md
8
+redirect_from:
9
+ - /cli-documentation/v7/misc/removal
10
+ - /cli-documentation/v7/misc/removing-npm
11
+ - /cli-documentation/v7/using-npm/removal
12
+ - /cli-documentation/v7/using-npm/removing-npm
13
+ - /cli/v7/misc/removal
14
+ - /cli/v7/misc/removing-npm
15
+ - /cli/v7/using-npm/removing-npm
16
---
17
18
### Synopsis
content/cli/v7/using-npm/scope.md
+8
@@ -5,6 +5,14 @@ description: Scoped packages
5
github_repo: npm/cli
6
github_branch: v7
7
github_path: docs/content/using-npm/scope.md
8
+redirect_from:
9
+ - /cli-documentation/v7/misc/npm-scope
10
+ - /cli-documentation/v7/misc/scope
11
+ - /cli-documentation/v7/using-npm/npm-scope
12
+ - /cli-documentation/v7/using-npm/scope
13
+ - /cli/v7/misc/npm-scope
14
+ - /cli/v7/misc/scope
15
+ - /cli/v7/using-npm/npm-scope
16
---
17
18
### Description
content/cli/v7/using-npm/scripts.md
+4
@@ -5,6 +5,10 @@ description: How npm handles the "scripts" field
5
github_repo: npm/cli
6
github_branch: v7
7
github_path: docs/content/using-npm/scripts.md
8
+redirect_from:
9
+ - /cli-documentation/v7/misc/scripts
10
+ - /cli-documentation/v7/using-npm/scripts
11
+ - /cli/v7/misc/scripts
12
---
13
14
### Description
content/cli/v7/using-npm/workspaces.md
+4
@@ -5,6 +5,10 @@ description: Working with workspaces
5
github_repo: npm/cli
6
github_branch: v7
7
github_path: docs/content/using-npm/workspaces.md
8
+redirect_from:
9
+ - /cli-documentation/v7/misc/workspaces
10
+ - /cli-documentation/v7/using-npm/workspaces
11
+ - /cli/v7/misc/workspaces
12
---
13
14
### Description
content/cli/v8/commands/index.mdx
+16
@@ -4,10 +4,26 @@ github_repo: npm/cli
4
github_branch: v8
5
github_path: docs/nav.yml
6
redirect_from:
7
+ - /cli-commands
8
+ - /cli-commands/index
9
- /cli-documentation/cli
10
- /cli-documentation/cli-commands
11
+ - /cli-documentation/cli-commands/index
12
+ - /cli-documentation/commands
13
+ - /cli-documentation/commands/index
14
+ - /cli-documentation/v8/cli-commands
15
+ - /cli-documentation/v8/cli-commands/index
16
+ - /cli-documentation/v8/commands
17
+ - /cli-documentation/v8/commands/index
18
+ - /cli/cli-commands
19
+ - /cli/cli-commands/index
20
- /cli/commands
21
+ - /cli/commands/index
22
+ - /cli/v8/cli-commands
23
+ - /cli/v8/cli-commands/index
24
+ - /cli/v8/commands/index
25
- /commands
26
+ - /commands/index
27
---
28
29
<Index depth="1" />
content/cli/v8/commands/npm-access.md
+22
-2
@@ -7,12 +7,32 @@ github_branch: v8
7
github_path: docs/content/commands/npm-access.md
8
redirect_from:
9
- /cli-commands/access
10
- - /cli-commands/access.html
10
- /cli-commands/npm-access
11
- /cli-documentation/access
12
+ - /cli-documentation/cli-commands/access
13
+ - /cli-documentation/cli-commands/npm-access
14
+ - /cli-documentation/commands/access
15
+ - /cli-documentation/commands/npm-access
16
+ - /cli-documentation/npm-access
17
+ - /cli-documentation/v8/access
18
+ - /cli-documentation/v8/cli-commands/access
19
+ - /cli-documentation/v8/cli-commands/npm-access
20
+ - /cli-documentation/v8/commands/access
21
+ - /cli-documentation/v8/commands/npm-access
22
+ - /cli-documentation/v8/npm-access
23
- /cli/access
14
- - /cli/access.html
24
+ - /cli/cli-commands/access
25
+ - /cli/cli-commands/npm-access
26
- /cli/commands/access
27
+ - /cli/commands/npm-access
28
+ - /cli/npm-access
29
+ - /cli/v8/access
30
+ - /cli/v8/cli-commands/access
31
+ - /cli/v8/cli-commands/npm-access
32
+ - /cli/v8/commands/access
33
+ - /cli/v8/npm-access
34
+ - /commands/access
35
+ - /commands/npm-access
36
---
37
38
### Synopsis
content/cli/v8/commands/npm-adduser.md
+23
-2
@@ -7,11 +7,32 @@ github_branch: v8
7
github_path: docs/content/commands/npm-adduser.md
8
redirect_from:
9
- /cli-commands/adduser
10
- - /cli-commands/adduser.html
10
- /cli-commands/npm-adduser
11
+ - /cli-documentation/adduser
12
+ - /cli-documentation/cli-commands/adduser
13
+ - /cli-documentation/cli-commands/npm-adduser
14
+ - /cli-documentation/commands/adduser
15
+ - /cli-documentation/commands/npm-adduser
16
+ - /cli-documentation/npm-adduser
17
+ - /cli-documentation/v8/adduser
18
+ - /cli-documentation/v8/cli-commands/adduser
19
+ - /cli-documentation/v8/cli-commands/npm-adduser
20
+ - /cli-documentation/v8/commands/adduser
21
+ - /cli-documentation/v8/commands/npm-adduser
22
+ - /cli-documentation/v8/npm-adduser
23
- /cli/adduser
13
- - /cli/adduser.html
24
+ - /cli/cli-commands/adduser
25
+ - /cli/cli-commands/npm-adduser
26
- /cli/commands/adduser
27
+ - /cli/commands/npm-adduser
28
+ - /cli/npm-adduser
29
+ - /cli/v8/adduser
30
+ - /cli/v8/cli-commands/adduser
31
+ - /cli/v8/cli-commands/npm-adduser
32
+ - /cli/v8/commands/adduser
33
+ - /cli/v8/npm-adduser
34
+ - /commands/adduser
35
+ - /commands/npm-adduser
36
---
37
38
### Synopsis
content/cli/v8/commands/npm-audit.md
+23
-2
@@ -7,11 +7,32 @@ github_branch: v8
7
github_path: docs/content/commands/npm-audit.md
8
redirect_from:
9
- /cli-commands/audit
10
- - /cli-commands/audit.html
10
- /cli-commands/npm-audit
11
+ - /cli-documentation/audit
12
+ - /cli-documentation/cli-commands/audit
13
+ - /cli-documentation/cli-commands/npm-audit
14
+ - /cli-documentation/commands/audit
15
+ - /cli-documentation/commands/npm-audit
16
+ - /cli-documentation/npm-audit
17
+ - /cli-documentation/v8/audit
18
+ - /cli-documentation/v8/cli-commands/audit
19
+ - /cli-documentation/v8/cli-commands/npm-audit
20
+ - /cli-documentation/v8/commands/audit
21
+ - /cli-documentation/v8/commands/npm-audit
22
+ - /cli-documentation/v8/npm-audit
23
- /cli/audit
13
- - /cli/audit.html
24
+ - /cli/cli-commands/audit
25
+ - /cli/cli-commands/npm-audit
26
- /cli/commands/audit
27
+ - /cli/commands/npm-audit
28
+ - /cli/npm-audit
29
+ - /cli/v8/audit
30
+ - /cli/v8/cli-commands/audit
31
+ - /cli/v8/cli-commands/npm-audit
32
+ - /cli/v8/commands/audit
33
+ - /cli/v8/npm-audit
34
+ - /commands/audit
35
+ - /commands/npm-audit
36
---
37
38
### Synopsis
content/cli/v8/commands/npm-bin.md
+23
-2
@@ -7,11 +7,32 @@ github_branch: v8
7
github_path: docs/content/commands/npm-bin.md
8
redirect_from:
9
- /cli-commands/bin
10
- - /cli-commands/bin.html
10
- /cli-commands/npm-bin
11
+ - /cli-documentation/bin
12
+ - /cli-documentation/cli-commands/bin
13
+ - /cli-documentation/cli-commands/npm-bin
14
+ - /cli-documentation/commands/bin
15
+ - /cli-documentation/commands/npm-bin
16
+ - /cli-documentation/npm-bin
17
+ - /cli-documentation/v8/bin
18
+ - /cli-documentation/v8/cli-commands/bin
19
+ - /cli-documentation/v8/cli-commands/npm-bin
20
+ - /cli-documentation/v8/commands/bin
21
+ - /cli-documentation/v8/commands/npm-bin
22
+ - /cli-documentation/v8/npm-bin
23
- /cli/bin
13
- - /cli/bin.html
24
+ - /cli/cli-commands/bin
25
+ - /cli/cli-commands/npm-bin
26
- /cli/commands/bin
27
+ - /cli/commands/npm-bin
28
+ - /cli/npm-bin
29
+ - /cli/v8/bin
30
+ - /cli/v8/cli-commands/bin
31
+ - /cli/v8/cli-commands/npm-bin
32
+ - /cli/v8/commands/bin
33
+ - /cli/v8/npm-bin
34
+ - /commands/bin
35
+ - /commands/npm-bin
36
---
37
38
### Synopsis
content/cli/v8/commands/npm-bugs.md
+23
-2
@@ -7,11 +7,32 @@ github_branch: v8
7
github_path: docs/content/commands/npm-bugs.md
8
redirect_from:
9
- /cli-commands/bugs
10
- - /cli-commands/bugs.html
10
- /cli-commands/npm-bugs
11
+ - /cli-documentation/bugs
12
+ - /cli-documentation/cli-commands/bugs
13
+ - /cli-documentation/cli-commands/npm-bugs
14
+ - /cli-documentation/commands/bugs
15
+ - /cli-documentation/commands/npm-bugs
16
+ - /cli-documentation/npm-bugs
17
+ - /cli-documentation/v8/bugs
18
+ - /cli-documentation/v8/cli-commands/bugs
19
+ - /cli-documentation/v8/cli-commands/npm-bugs
20
+ - /cli-documentation/v8/commands/bugs
21
+ - /cli-documentation/v8/commands/npm-bugs
22
+ - /cli-documentation/v8/npm-bugs
23
- /cli/bugs
13
- - /cli/bugs.html
24
+ - /cli/cli-commands/bugs
25
+ - /cli/cli-commands/npm-bugs
26
- /cli/commands/bugs
27
+ - /cli/commands/npm-bugs
28
+ - /cli/npm-bugs
29
+ - /cli/v8/bugs
30
+ - /cli/v8/cli-commands/bugs
31
+ - /cli/v8/cli-commands/npm-bugs
32
+ - /cli/v8/commands/bugs
33
+ - /cli/v8/npm-bugs
34
+ - /commands/bugs
35
+ - /commands/npm-bugs
36
---
37
38
### Synopsis
content/cli/v8/commands/npm-cache.md
+23
-2
@@ -7,11 +7,32 @@ github_branch: v8
7
github_path: docs/content/commands/npm-cache.md
8
redirect_from:
9
- /cli-commands/cache
10
- - /cli-commands/cache.html
10
- /cli-commands/npm-cache
11
+ - /cli-documentation/cache
12
+ - /cli-documentation/cli-commands/cache
13
+ - /cli-documentation/cli-commands/npm-cache
14
+ - /cli-documentation/commands/cache
15
+ - /cli-documentation/commands/npm-cache
16
+ - /cli-documentation/npm-cache
17
+ - /cli-documentation/v8/cache
18
+ - /cli-documentation/v8/cli-commands/cache
19
+ - /cli-documentation/v8/cli-commands/npm-cache
20
+ - /cli-documentation/v8/commands/cache
21
+ - /cli-documentation/v8/commands/npm-cache
22
+ - /cli-documentation/v8/npm-cache
23
- /cli/cache
13
- - /cli/cache.html
24
+ - /cli/cli-commands/cache
25
+ - /cli/cli-commands/npm-cache
26
- /cli/commands/cache
27
+ - /cli/commands/npm-cache
28
+ - /cli/npm-cache
29
+ - /cli/v8/cache
30
+ - /cli/v8/cli-commands/cache
31
+ - /cli/v8/cli-commands/npm-cache
32
+ - /cli/v8/commands/cache
33
+ - /cli/v8/npm-cache
34
+ - /commands/cache
35
+ - /commands/npm-cache
36
---
37
38
### Synopsis
content/cli/v8/commands/npm-ci.md
+23
-2
@@ -7,11 +7,32 @@ github_branch: v8
7
github_path: docs/content/commands/npm-ci.md
8
redirect_from:
9
- /cli-commands/ci
10
- - /cli-commands/ci.html
10
- /cli-commands/npm-ci
11
+ - /cli-documentation/ci
12
+ - /cli-documentation/cli-commands/ci
13
+ - /cli-documentation/cli-commands/npm-ci
14
+ - /cli-documentation/commands/ci
15
+ - /cli-documentation/commands/npm-ci
16
+ - /cli-documentation/npm-ci
17
+ - /cli-documentation/v8/ci
18
+ - /cli-documentation/v8/cli-commands/ci
19
+ - /cli-documentation/v8/cli-commands/npm-ci
20
+ - /cli-documentation/v8/commands/ci
21
+ - /cli-documentation/v8/commands/npm-ci
22
+ - /cli-documentation/v8/npm-ci
23
- /cli/ci
13
- - /cli/ci.html
24
+ - /cli/cli-commands/ci
25
+ - /cli/cli-commands/npm-ci
26
- /cli/commands/ci
27
+ - /cli/commands/npm-ci
28
+ - /cli/npm-ci
29
+ - /cli/v8/ci
30
+ - /cli/v8/cli-commands/ci
31
+ - /cli/v8/cli-commands/npm-ci
32
+ - /cli/v8/commands/ci
33
+ - /cli/v8/npm-ci
34
+ - /commands/ci
35
+ - /commands/npm-ci
36
---
37
38
### Synopsis
content/cli/v8/commands/npm-completion.md
+23
-2
@@ -7,11 +7,32 @@ github_branch: v8
7
github_path: docs/content/commands/npm-completion.md
8
redirect_from:
9
- /cli-commands/completion
10
- - /cli-commands/completion.html
10
- /cli-commands/npm-completion
11
+ - /cli-documentation/cli-commands/completion
12
+ - /cli-documentation/cli-commands/npm-completion
13
+ - /cli-documentation/commands/completion
14
+ - /cli-documentation/commands/npm-completion
15
+ - /cli-documentation/completion
16
+ - /cli-documentation/npm-completion
17
+ - /cli-documentation/v8/cli-commands/completion
18
+ - /cli-documentation/v8/cli-commands/npm-completion
19
+ - /cli-documentation/v8/commands/completion
20
+ - /cli-documentation/v8/commands/npm-completion
21
+ - /cli-documentation/v8/completion
22
+ - /cli-documentation/v8/npm-completion
23
+ - /cli/cli-commands/completion
24
+ - /cli/cli-commands/npm-completion
25
- /cli/commands/completion
26
+ - /cli/commands/npm-completion
27
- /cli/completion
14
- - /cli/completion.html
28
+ - /cli/npm-completion
29
+ - /cli/v8/cli-commands/completion
30
+ - /cli/v8/cli-commands/npm-completion
31
+ - /cli/v8/commands/completion
32
+ - /cli/v8/completion
33
+ - /cli/v8/npm-completion
34
+ - /commands/completion
35
+ - /commands/npm-completion
36
---
37
38
### Synopsis
content/cli/v8/commands/npm-config.md
+23
-2
@@ -7,11 +7,32 @@ github_branch: v8
7
github_path: docs/content/commands/npm-config.md
8
redirect_from:
9
- /cli-commands/config
10
- - /cli-commands/config.html
10
- /cli-commands/npm-config
11
+ - /cli-documentation/cli-commands/config
12
+ - /cli-documentation/cli-commands/npm-config
13
+ - /cli-documentation/commands/config
14
+ - /cli-documentation/commands/npm-config
15
+ - /cli-documentation/config
16
+ - /cli-documentation/npm-config
17
+ - /cli-documentation/v8/cli-commands/config
18
+ - /cli-documentation/v8/cli-commands/npm-config
19
+ - /cli-documentation/v8/commands/config
20
+ - /cli-documentation/v8/commands/npm-config
21
+ - /cli-documentation/v8/config
22
+ - /cli-documentation/v8/npm-config
23
+ - /cli/cli-commands/config
24
+ - /cli/cli-commands/npm-config
25
- /cli/commands/config
26
+ - /cli/commands/npm-config
27
- /cli/config
14
- - /cli/config.html
28
+ - /cli/npm-config
29
+ - /cli/v8/cli-commands/config
30
+ - /cli/v8/cli-commands/npm-config
31
+ - /cli/v8/commands/config
32
+ - /cli/v8/config
33
+ - /cli/v8/npm-config
34
+ - /commands/config
35
+ - /commands/npm-config
36
---
37
38
### Synopsis
content/cli/v8/commands/npm-dedupe.md
+23
-2
@@ -7,11 +7,32 @@ github_branch: v8
7
github_path: docs/content/commands/npm-dedupe.md
8
redirect_from:
9
- /cli-commands/dedupe
10
- - /cli-commands/dedupe.html
10
- /cli-commands/npm-dedupe
11
+ - /cli-documentation/cli-commands/dedupe
12
+ - /cli-documentation/cli-commands/npm-dedupe
13
+ - /cli-documentation/commands/dedupe
14
+ - /cli-documentation/commands/npm-dedupe
15
+ - /cli-documentation/dedupe
16
+ - /cli-documentation/npm-dedupe
17
+ - /cli-documentation/v8/cli-commands/dedupe
18
+ - /cli-documentation/v8/cli-commands/npm-dedupe
19
+ - /cli-documentation/v8/commands/dedupe
20
+ - /cli-documentation/v8/commands/npm-dedupe
21
+ - /cli-documentation/v8/dedupe
22
+ - /cli-documentation/v8/npm-dedupe
23
+ - /cli/cli-commands/dedupe
24
+ - /cli/cli-commands/npm-dedupe
25
- /cli/commands/dedupe
26
+ - /cli/commands/npm-dedupe
27
- /cli/dedupe
14
- - /cli/dedupe.html
28
+ - /cli/npm-dedupe
29
+ - /cli/v8/cli-commands/dedupe
30
+ - /cli/v8/cli-commands/npm-dedupe
31
+ - /cli/v8/commands/dedupe
32
+ - /cli/v8/dedupe
33
+ - /cli/v8/npm-dedupe
34
+ - /commands/dedupe
35
+ - /commands/npm-dedupe
36
---
37
38
### Synopsis
content/cli/v8/commands/npm-deprecate.md
+23
-2
@@ -7,11 +7,32 @@ github_branch: v8
7
github_path: docs/content/commands/npm-deprecate.md
8
redirect_from:
9
- /cli-commands/deprecate
10
- - /cli-commands/deprecate.html
10
- /cli-commands/npm-deprecate
11
+ - /cli-documentation/cli-commands/deprecate
12
+ - /cli-documentation/cli-commands/npm-deprecate
13
+ - /cli-documentation/commands/deprecate
14
+ - /cli-documentation/commands/npm-deprecate
15
+ - /cli-documentation/deprecate
16
+ - /cli-documentation/npm-deprecate
17
+ - /cli-documentation/v8/cli-commands/deprecate
18
+ - /cli-documentation/v8/cli-commands/npm-deprecate
19
+ - /cli-documentation/v8/commands/deprecate
20
+ - /cli-documentation/v8/commands/npm-deprecate
21
+ - /cli-documentation/v8/deprecate
22
+ - /cli-documentation/v8/npm-deprecate
23
+ - /cli/cli-commands/deprecate
24
+ - /cli/cli-commands/npm-deprecate
25
- /cli/commands/deprecate
26
+ - /cli/commands/npm-deprecate
27
- /cli/deprecate
14
- - /cli/deprecate.html
28
+ - /cli/npm-deprecate
29
+ - /cli/v8/cli-commands/deprecate
30
+ - /cli/v8/cli-commands/npm-deprecate
31
+ - /cli/v8/commands/deprecate
32
+ - /cli/v8/deprecate
33
+ - /cli/v8/npm-deprecate
34
+ - /commands/deprecate
35
+ - /commands/npm-deprecate
36
---
37
38
### Synopsis
content/cli/v8/commands/npm-diff.md
+23
-2
@@ -7,11 +7,32 @@ github_branch: v8
7
github_path: docs/content/commands/npm-diff.md
8
redirect_from:
9
- /cli-commands/diff
10
- - /cli-commands/diff.html
10
- /cli-commands/npm-diff
11
+ - /cli-documentation/cli-commands/diff
12
+ - /cli-documentation/cli-commands/npm-diff
13
+ - /cli-documentation/commands/diff
14
+ - /cli-documentation/commands/npm-diff
15
+ - /cli-documentation/diff
16
+ - /cli-documentation/npm-diff
17
+ - /cli-documentation/v8/cli-commands/diff
18
+ - /cli-documentation/v8/cli-commands/npm-diff
19
+ - /cli-documentation/v8/commands/diff
20
+ - /cli-documentation/v8/commands/npm-diff
21
+ - /cli-documentation/v8/diff
22
+ - /cli-documentation/v8/npm-diff
23
+ - /cli/cli-commands/diff
24
+ - /cli/cli-commands/npm-diff
25
- /cli/commands/diff
26
+ - /cli/commands/npm-diff
27
- /cli/diff
14
- - /cli/diff.html
28
+ - /cli/npm-diff
29
+ - /cli/v8/cli-commands/diff
30
+ - /cli/v8/cli-commands/npm-diff
31
+ - /cli/v8/commands/diff
32
+ - /cli/v8/diff
33
+ - /cli/v8/npm-diff
34
+ - /commands/diff
35
+ - /commands/npm-diff
36
---
37
38
### Synopsis
content/cli/v8/commands/npm-dist-tag.md
+23
-2
@@ -7,11 +7,32 @@ github_branch: v8
7
github_path: docs/content/commands/npm-dist-tag.md
8
redirect_from:
9
- /cli-commands/dist-tag
10
- - /cli-commands/dist-tag.html
10
- /cli-commands/npm-dist-tag
11
+ - /cli-documentation/cli-commands/dist-tag
12
+ - /cli-documentation/cli-commands/npm-dist-tag
13
+ - /cli-documentation/commands/dist-tag
14
+ - /cli-documentation/commands/npm-dist-tag
15
+ - /cli-documentation/dist-tag
16
+ - /cli-documentation/npm-dist-tag
17
+ - /cli-documentation/v8/cli-commands/dist-tag
18
+ - /cli-documentation/v8/cli-commands/npm-dist-tag
19
+ - /cli-documentation/v8/commands/dist-tag
20
+ - /cli-documentation/v8/commands/npm-dist-tag
21
+ - /cli-documentation/v8/dist-tag
22
+ - /cli-documentation/v8/npm-dist-tag
23
+ - /cli/cli-commands/dist-tag
24
+ - /cli/cli-commands/npm-dist-tag
25
- /cli/commands/dist-tag
26
+ - /cli/commands/npm-dist-tag
27
- /cli/dist-tag
14
- - /cli/dist-tag.html
28
+ - /cli/npm-dist-tag
29
+ - /cli/v8/cli-commands/dist-tag
30
+ - /cli/v8/cli-commands/npm-dist-tag
31
+ - /cli/v8/commands/dist-tag
32
+ - /cli/v8/dist-tag
33
+ - /cli/v8/npm-dist-tag
34
+ - /commands/dist-tag
35
+ - /commands/npm-dist-tag
36
---
37
38
### Synopsis
content/cli/v8/commands/npm-docs.md
+23
-2
@@ -7,11 +7,32 @@ github_branch: v8
7
github_path: docs/content/commands/npm-docs.md
8
redirect_from:
9
- /cli-commands/docs
10
- - /cli-commands/docs.html
10
- /cli-commands/npm-docs
11
+ - /cli-documentation/cli-commands/docs
12
+ - /cli-documentation/cli-commands/npm-docs
13
+ - /cli-documentation/commands/docs
14
+ - /cli-documentation/commands/npm-docs
15
+ - /cli-documentation/docs
16
+ - /cli-documentation/npm-docs
17
+ - /cli-documentation/v8/cli-commands/docs
18
+ - /cli-documentation/v8/cli-commands/npm-docs
19
+ - /cli-documentation/v8/commands/docs
20
+ - /cli-documentation/v8/commands/npm-docs
21
+ - /cli-documentation/v8/docs
22
+ - /cli-documentation/v8/npm-docs
23
+ - /cli/cli-commands/docs
24
+ - /cli/cli-commands/npm-docs
25
- /cli/commands/docs
26
+ - /cli/commands/npm-docs
27
- /cli/docs
14
- - /cli/docs.html
28
+ - /cli/npm-docs
29
+ - /cli/v8/cli-commands/docs
30
+ - /cli/v8/cli-commands/npm-docs
31
+ - /cli/v8/commands/docs
32
+ - /cli/v8/docs
33
+ - /cli/v8/npm-docs
34
+ - /commands/docs
35
+ - /commands/npm-docs
36
---
37
38
### Synopsis
content/cli/v8/commands/npm-doctor.md
+23
-2
@@ -7,11 +7,32 @@ github_branch: v8
7
github_path: docs/content/commands/npm-doctor.md
8
redirect_from:
9
- /cli-commands/doctor
10
- - /cli-commands/doctor.html
10
- /cli-commands/npm-doctor
11
+ - /cli-documentation/cli-commands/doctor
12
+ - /cli-documentation/cli-commands/npm-doctor
13
+ - /cli-documentation/commands/doctor
14
+ - /cli-documentation/commands/npm-doctor
15
+ - /cli-documentation/doctor
16
+ - /cli-documentation/npm-doctor
17
+ - /cli-documentation/v8/cli-commands/doctor
18
+ - /cli-documentation/v8/cli-commands/npm-doctor
19
+ - /cli-documentation/v8/commands/doctor
20
+ - /cli-documentation/v8/commands/npm-doctor
21
+ - /cli-documentation/v8/doctor
22
+ - /cli-documentation/v8/npm-doctor
23
+ - /cli/cli-commands/doctor
24
+ - /cli/cli-commands/npm-doctor
25
- /cli/commands/doctor
26
+ - /cli/commands/npm-doctor
27
- /cli/doctor
14
- - /cli/doctor.html
28
+ - /cli/npm-doctor
29
+ - /cli/v8/cli-commands/doctor
30
+ - /cli/v8/cli-commands/npm-doctor
31
+ - /cli/v8/commands/doctor
32
+ - /cli/v8/doctor
33
+ - /cli/v8/npm-doctor
34
+ - /commands/doctor
35
+ - /commands/npm-doctor
36
---
37
38
### Synopsis
content/cli/v8/commands/npm-edit.md
+23
-2
@@ -7,11 +7,32 @@ github_branch: v8
7
github_path: docs/content/commands/npm-edit.md
8
redirect_from:
9
- /cli-commands/edit
10
- - /cli-commands/edit.html
10
- /cli-commands/npm-edit
11
+ - /cli-documentation/cli-commands/edit
12
+ - /cli-documentation/cli-commands/npm-edit
13
+ - /cli-documentation/commands/edit
14
+ - /cli-documentation/commands/npm-edit
15
+ - /cli-documentation/edit
16
+ - /cli-documentation/npm-edit
17
+ - /cli-documentation/v8/cli-commands/edit
18
+ - /cli-documentation/v8/cli-commands/npm-edit
19
+ - /cli-documentation/v8/commands/edit
20
+ - /cli-documentation/v8/commands/npm-edit
21
+ - /cli-documentation/v8/edit
22
+ - /cli-documentation/v8/npm-edit
23
+ - /cli/cli-commands/edit
24
+ - /cli/cli-commands/npm-edit
25
- /cli/commands/edit
26
+ - /cli/commands/npm-edit
27
- /cli/edit
14
- - /cli/edit.html
28
+ - /cli/npm-edit
29
+ - /cli/v8/cli-commands/edit
30
+ - /cli/v8/cli-commands/npm-edit
31
+ - /cli/v8/commands/edit
32
+ - /cli/v8/edit
33
+ - /cli/v8/npm-edit
34
+ - /commands/edit
35
+ - /commands/npm-edit
36
---
37
38
### Synopsis
content/cli/v8/commands/npm-exec.md
+23
-2
@@ -7,11 +7,32 @@ github_branch: v8
7
github_path: docs/content/commands/npm-exec.md
8
redirect_from:
9
- /cli-commands/exec
10
- - /cli-commands/exec.html
10
- /cli-commands/npm-exec
11
+ - /cli-documentation/cli-commands/exec
12
+ - /cli-documentation/cli-commands/npm-exec
13
+ - /cli-documentation/commands/exec
14
+ - /cli-documentation/commands/npm-exec
15
+ - /cli-documentation/exec
16
+ - /cli-documentation/npm-exec
17
+ - /cli-documentation/v8/cli-commands/exec
18
+ - /cli-documentation/v8/cli-commands/npm-exec
19
+ - /cli-documentation/v8/commands/exec
20
+ - /cli-documentation/v8/commands/npm-exec
21
+ - /cli-documentation/v8/exec
22
+ - /cli-documentation/v8/npm-exec
23
+ - /cli/cli-commands/exec
24
+ - /cli/cli-commands/npm-exec
25
- /cli/commands/exec
26
+ - /cli/commands/npm-exec
27
- /cli/exec
14
- - /cli/exec.html
28
+ - /cli/npm-exec
29
+ - /cli/v8/cli-commands/exec
30
+ - /cli/v8/cli-commands/npm-exec
31
+ - /cli/v8/commands/exec
32
+ - /cli/v8/exec
33
+ - /cli/v8/npm-exec
34
+ - /commands/exec
35
+ - /commands/npm-exec
36
---
37
38
### Synopsis
content/cli/v8/commands/npm-explain.md
+23
-2
@@ -7,11 +7,32 @@ github_branch: v8
7
github_path: docs/content/commands/npm-explain.md
8
redirect_from:
9
- /cli-commands/explain
10
- - /cli-commands/explain.html
10
- /cli-commands/npm-explain
11
+ - /cli-documentation/cli-commands/explain
12
+ - /cli-documentation/cli-commands/npm-explain
13
+ - /cli-documentation/commands/explain
14
+ - /cli-documentation/commands/npm-explain
15
+ - /cli-documentation/explain
16
+ - /cli-documentation/npm-explain
17
+ - /cli-documentation/v8/cli-commands/explain
18
+ - /cli-documentation/v8/cli-commands/npm-explain
19
+ - /cli-documentation/v8/commands/explain
20
+ - /cli-documentation/v8/commands/npm-explain
21
+ - /cli-documentation/v8/explain
22
+ - /cli-documentation/v8/npm-explain
23
+ - /cli/cli-commands/explain
24
+ - /cli/cli-commands/npm-explain
25
- /cli/commands/explain
26
+ - /cli/commands/npm-explain
27
- /cli/explain
14
- - /cli/explain.html
28
+ - /cli/npm-explain
29
+ - /cli/v8/cli-commands/explain
30
+ - /cli/v8/cli-commands/npm-explain
31
+ - /cli/v8/commands/explain
32
+ - /cli/v8/explain
33
+ - /cli/v8/npm-explain
34
+ - /commands/explain
35
+ - /commands/npm-explain
36
---
37
38
### Synopsis
content/cli/v8/commands/npm-explore.md
+23
-2
@@ -7,11 +7,32 @@ github_branch: v8
7
github_path: docs/content/commands/npm-explore.md
8
redirect_from:
9
- /cli-commands/explore
10
- - /cli-commands/explore.html
10
- /cli-commands/npm-explore
11
+ - /cli-documentation/cli-commands/explore
12
+ - /cli-documentation/cli-commands/npm-explore
13
+ - /cli-documentation/commands/explore
14
+ - /cli-documentation/commands/npm-explore
15
+ - /cli-documentation/explore
16
+ - /cli-documentation/npm-explore
17
+ - /cli-documentation/v8/cli-commands/explore
18
+ - /cli-documentation/v8/cli-commands/npm-explore
19
+ - /cli-documentation/v8/commands/explore
20
+ - /cli-documentation/v8/commands/npm-explore
21
+ - /cli-documentation/v8/explore
22
+ - /cli-documentation/v8/npm-explore
23
+ - /cli/cli-commands/explore
24
+ - /cli/cli-commands/npm-explore
25
- /cli/commands/explore
26
+ - /cli/commands/npm-explore
27
- /cli/explore
14
- - /cli/explore.html
28
+ - /cli/npm-explore
29
+ - /cli/v8/cli-commands/explore
30
+ - /cli/v8/cli-commands/npm-explore
31
+ - /cli/v8/commands/explore
32
+ - /cli/v8/explore
33
+ - /cli/v8/npm-explore
34
+ - /commands/explore
35
+ - /commands/npm-explore
36
---
37
38
### Synopsis
content/cli/v8/commands/npm-find-dupes.md
+23
-2
@@ -7,11 +7,32 @@ github_branch: v8
7
github_path: docs/content/commands/npm-find-dupes.md
8
redirect_from:
9
- /cli-commands/find-dupes
10
- - /cli-commands/find-dupes.html
10
- /cli-commands/npm-find-dupes
11
+ - /cli-documentation/cli-commands/find-dupes
12
+ - /cli-documentation/cli-commands/npm-find-dupes
13
+ - /cli-documentation/commands/find-dupes
14
+ - /cli-documentation/commands/npm-find-dupes
15
+ - /cli-documentation/find-dupes
16
+ - /cli-documentation/npm-find-dupes
17
+ - /cli-documentation/v8/cli-commands/find-dupes
18
+ - /cli-documentation/v8/cli-commands/npm-find-dupes
19
+ - /cli-documentation/v8/commands/find-dupes
20
+ - /cli-documentation/v8/commands/npm-find-dupes
21
+ - /cli-documentation/v8/find-dupes
22
+ - /cli-documentation/v8/npm-find-dupes
23
+ - /cli/cli-commands/find-dupes
24
+ - /cli/cli-commands/npm-find-dupes
25
- /cli/commands/find-dupes
26
+ - /cli/commands/npm-find-dupes
27
- /cli/find-dupes
14
- - /cli/find-dupes.html
28
+ - /cli/npm-find-dupes
29
+ - /cli/v8/cli-commands/find-dupes
30
+ - /cli/v8/cli-commands/npm-find-dupes
31
+ - /cli/v8/commands/find-dupes
32
+ - /cli/v8/find-dupes
33
+ - /cli/v8/npm-find-dupes
34
+ - /commands/find-dupes
35
+ - /commands/npm-find-dupes
36
---
37
38
### Synopsis
content/cli/v8/commands/npm-fund.md
+23
-2
@@ -7,11 +7,32 @@ github_branch: v8
7
github_path: docs/content/commands/npm-fund.md
8
redirect_from:
9
- /cli-commands/fund
10
- - /cli-commands/fund.html
10
- /cli-commands/npm-fund
11
+ - /cli-documentation/cli-commands/fund
12
+ - /cli-documentation/cli-commands/npm-fund
13
+ - /cli-documentation/commands/fund
14
+ - /cli-documentation/commands/npm-fund
15
+ - /cli-documentation/fund
16
+ - /cli-documentation/npm-fund
17
+ - /cli-documentation/v8/cli-commands/fund
18
+ - /cli-documentation/v8/cli-commands/npm-fund
19
+ - /cli-documentation/v8/commands/fund
20
+ - /cli-documentation/v8/commands/npm-fund
21
+ - /cli-documentation/v8/fund
22
+ - /cli-documentation/v8/npm-fund
23
+ - /cli/cli-commands/fund
24
+ - /cli/cli-commands/npm-fund
25
- /cli/commands/fund
26
+ - /cli/commands/npm-fund
27
- /cli/fund
14
- - /cli/fund.html
28
+ - /cli/npm-fund
29
+ - /cli/v8/cli-commands/fund
30
+ - /cli/v8/cli-commands/npm-fund
31
+ - /cli/v8/commands/fund
32
+ - /cli/v8/fund
33
+ - /cli/v8/npm-fund
34
+ - /commands/fund
35
+ - /commands/npm-fund
36
---
37
38
### Synopsis
content/cli/v8/commands/npm-help-search.md
+23
-2
@@ -7,11 +7,32 @@ github_branch: v8
7
github_path: docs/content/commands/npm-help-search.md
8
redirect_from:
9
- /cli-commands/help-search
10
- - /cli-commands/help-search.html
10
- /cli-commands/npm-help-search
11
+ - /cli-documentation/cli-commands/help-search
12
+ - /cli-documentation/cli-commands/npm-help-search
13
+ - /cli-documentation/commands/help-search
14
+ - /cli-documentation/commands/npm-help-search
15
+ - /cli-documentation/help-search
16
+ - /cli-documentation/npm-help-search
17
+ - /cli-documentation/v8/cli-commands/help-search
18
+ - /cli-documentation/v8/cli-commands/npm-help-search
19
+ - /cli-documentation/v8/commands/help-search
20
+ - /cli-documentation/v8/commands/npm-help-search
21
+ - /cli-documentation/v8/help-search
22
+ - /cli-documentation/v8/npm-help-search
23
+ - /cli/cli-commands/help-search
24
+ - /cli/cli-commands/npm-help-search
25
- /cli/commands/help-search
26
+ - /cli/commands/npm-help-search
27
- /cli/help-search
14
- - /cli/help-search.html
28
+ - /cli/npm-help-search
29
+ - /cli/v8/cli-commands/help-search
30
+ - /cli/v8/cli-commands/npm-help-search
31
+ - /cli/v8/commands/help-search
32
+ - /cli/v8/help-search
33
+ - /cli/v8/npm-help-search
34
+ - /commands/help-search
35
+ - /commands/npm-help-search
36
---
37
38
### Synopsis
content/cli/v8/commands/npm-help.md
+23
-2
@@ -7,11 +7,32 @@ github_branch: v8
7
github_path: docs/content/commands/npm-help.md
8
redirect_from:
9
- /cli-commands/help
10
- - /cli-commands/help.html
10
- /cli-commands/npm-help
11
+ - /cli-documentation/cli-commands/help
12
+ - /cli-documentation/cli-commands/npm-help
13
+ - /cli-documentation/commands/help
14
+ - /cli-documentation/commands/npm-help
15
+ - /cli-documentation/help
16
+ - /cli-documentation/npm-help
17
+ - /cli-documentation/v8/cli-commands/help
18
+ - /cli-documentation/v8/cli-commands/npm-help
19
+ - /cli-documentation/v8/commands/help
20
+ - /cli-documentation/v8/commands/npm-help
21
+ - /cli-documentation/v8/help
22
+ - /cli-documentation/v8/npm-help
23
+ - /cli/cli-commands/help
24
+ - /cli/cli-commands/npm-help
25
- /cli/commands/help
26
+ - /cli/commands/npm-help
27
- /cli/help
14
- - /cli/help.html
28
+ - /cli/npm-help
29
+ - /cli/v8/cli-commands/help
30
+ - /cli/v8/cli-commands/npm-help
31
+ - /cli/v8/commands/help
32
+ - /cli/v8/help
33
+ - /cli/v8/npm-help
34
+ - /commands/help
35
+ - /commands/npm-help
36
---
37
38
### Synopsis
content/cli/v8/commands/npm-hook.md
+23
-2
@@ -7,11 +7,32 @@ github_branch: v8
7
github_path: docs/content/commands/npm-hook.md
8
redirect_from:
9
- /cli-commands/hook
10
- - /cli-commands/hook.html
10
- /cli-commands/npm-hook
11
+ - /cli-documentation/cli-commands/hook
12
+ - /cli-documentation/cli-commands/npm-hook
13
+ - /cli-documentation/commands/hook
14
+ - /cli-documentation/commands/npm-hook
15
+ - /cli-documentation/hook
16
+ - /cli-documentation/npm-hook
17
+ - /cli-documentation/v8/cli-commands/hook
18
+ - /cli-documentation/v8/cli-commands/npm-hook
19
+ - /cli-documentation/v8/commands/hook
20
+ - /cli-documentation/v8/commands/npm-hook
21
+ - /cli-documentation/v8/hook
22
+ - /cli-documentation/v8/npm-hook
23
+ - /cli/cli-commands/hook
24
+ - /cli/cli-commands/npm-hook
25
- /cli/commands/hook
26
+ - /cli/commands/npm-hook
27
- /cli/hook
14
- - /cli/hook.html
28
+ - /cli/npm-hook
29
+ - /cli/v8/cli-commands/hook
30
+ - /cli/v8/cli-commands/npm-hook
31
+ - /cli/v8/commands/hook
32
+ - /cli/v8/hook
33
+ - /cli/v8/npm-hook
34
+ - /commands/hook
35
+ - /commands/npm-hook
36
---
37
38
### Synopsis
content/cli/v8/commands/npm-init.md
+23
-2
@@ -7,11 +7,32 @@ github_branch: v8
7
github_path: docs/content/commands/npm-init.md
8
redirect_from:
9
- /cli-commands/init
10
- - /cli-commands/init.html
10
- /cli-commands/npm-init
11
+ - /cli-documentation/cli-commands/init
12
+ - /cli-documentation/cli-commands/npm-init
13
+ - /cli-documentation/commands/init
14
+ - /cli-documentation/commands/npm-init
15
+ - /cli-documentation/init
16
+ - /cli-documentation/npm-init
17
+ - /cli-documentation/v8/cli-commands/init
18
+ - /cli-documentation/v8/cli-commands/npm-init
19
+ - /cli-documentation/v8/commands/init
20
+ - /cli-documentation/v8/commands/npm-init
21
+ - /cli-documentation/v8/init
22
+ - /cli-documentation/v8/npm-init
23
+ - /cli/cli-commands/init
24
+ - /cli/cli-commands/npm-init
25
- /cli/commands/init
26
+ - /cli/commands/npm-init
27
- /cli/init
14
- - /cli/init.html
28
+ - /cli/npm-init
29
+ - /cli/v8/cli-commands/init
30
+ - /cli/v8/cli-commands/npm-init
31
+ - /cli/v8/commands/init
32
+ - /cli/v8/init
33
+ - /cli/v8/npm-init
34
+ - /commands/init
35
+ - /commands/npm-init
36
---
37
38
### Synopsis
content/cli/v8/commands/npm-install-ci-test.md
+23
-2
@@ -7,11 +7,32 @@ github_branch: v8
7
github_path: docs/content/commands/npm-install-ci-test.md
8
redirect_from:
9
- /cli-commands/install-ci-test
10
- - /cli-commands/install-ci-test.html
10
- /cli-commands/npm-install-ci-test
11
+ - /cli-documentation/cli-commands/install-ci-test
12
+ - /cli-documentation/cli-commands/npm-install-ci-test
13
+ - /cli-documentation/commands/install-ci-test
14
+ - /cli-documentation/commands/npm-install-ci-test
15
+ - /cli-documentation/install-ci-test
16
+ - /cli-documentation/npm-install-ci-test
17
+ - /cli-documentation/v8/cli-commands/install-ci-test
18
+ - /cli-documentation/v8/cli-commands/npm-install-ci-test
19
+ - /cli-documentation/v8/commands/install-ci-test
20
+ - /cli-documentation/v8/commands/npm-install-ci-test
21
+ - /cli-documentation/v8/install-ci-test
22
+ - /cli-documentation/v8/npm-install-ci-test
23
+ - /cli/cli-commands/install-ci-test
24
+ - /cli/cli-commands/npm-install-ci-test
25
- /cli/commands/install-ci-test
26
+ - /cli/commands/npm-install-ci-test
27
- /cli/install-ci-test
14
- - /cli/install-ci-test.html
28
+ - /cli/npm-install-ci-test
29
+ - /cli/v8/cli-commands/install-ci-test
30
+ - /cli/v8/cli-commands/npm-install-ci-test
31
+ - /cli/v8/commands/install-ci-test
32
+ - /cli/v8/install-ci-test
33
+ - /cli/v8/npm-install-ci-test
34
+ - /commands/install-ci-test
35
+ - /commands/npm-install-ci-test
36
---
37
38
### Synopsis
content/cli/v8/commands/npm-install-test.md
+23
-2
@@ -7,11 +7,32 @@ github_branch: v8
7
github_path: docs/content/commands/npm-install-test.md
8
redirect_from:
9
- /cli-commands/install-test
10
- - /cli-commands/install-test.html
10
- /cli-commands/npm-install-test
11
+ - /cli-documentation/cli-commands/install-test
12
+ - /cli-documentation/cli-commands/npm-install-test
13
+ - /cli-documentation/commands/install-test
14
+ - /cli-documentation/commands/npm-install-test
15
+ - /cli-documentation/install-test
16
+ - /cli-documentation/npm-install-test
17
+ - /cli-documentation/v8/cli-commands/install-test
18
+ - /cli-documentation/v8/cli-commands/npm-install-test
19
+ - /cli-documentation/v8/commands/install-test
20
+ - /cli-documentation/v8/commands/npm-install-test
21
+ - /cli-documentation/v8/install-test
22
+ - /cli-documentation/v8/npm-install-test
23
+ - /cli/cli-commands/install-test
24
+ - /cli/cli-commands/npm-install-test
25
- /cli/commands/install-test
26
+ - /cli/commands/npm-install-test
27
- /cli/install-test
14
- - /cli/install-test.html
28
+ - /cli/npm-install-test
29
+ - /cli/v8/cli-commands/install-test
30
+ - /cli/v8/cli-commands/npm-install-test
31
+ - /cli/v8/commands/install-test
32
+ - /cli/v8/install-test
33
+ - /cli/v8/npm-install-test
34
+ - /commands/install-test
35
+ - /commands/npm-install-test
36
---
37
38
### Synopsis
content/cli/v8/commands/npm-install.md
+22
-2
@@ -7,12 +7,32 @@ github_branch: v8
7
github_path: docs/content/commands/npm-install.md
8
redirect_from:
9
- /cli-commands/install
10
- - /cli-commands/install.html
10
- /cli-commands/npm-install
11
+ - /cli-documentation/cli-commands/install
12
+ - /cli-documentation/cli-commands/npm-install
13
+ - /cli-documentation/commands/install
14
+ - /cli-documentation/commands/npm-install
15
- /cli-documentation/install
16
+ - /cli-documentation/npm-install
17
+ - /cli-documentation/v8/cli-commands/install
18
+ - /cli-documentation/v8/cli-commands/npm-install
19
+ - /cli-documentation/v8/commands/install
20
+ - /cli-documentation/v8/commands/npm-install
21
+ - /cli-documentation/v8/install
22
+ - /cli-documentation/v8/npm-install
23
+ - /cli/cli-commands/install
24
+ - /cli/cli-commands/npm-install
25
- /cli/commands/install
26
+ - /cli/commands/npm-install
27
- /cli/install
15
- - /cli/install.html
28
+ - /cli/npm-install
29
+ - /cli/v8/cli-commands/install
30
+ - /cli/v8/cli-commands/npm-install
31
+ - /cli/v8/commands/install
32
+ - /cli/v8/install
33
+ - /cli/v8/npm-install
34
+ - /commands/install
35
+ - /commands/npm-install
36
---
37
38
### Synopsis
content/cli/v8/commands/npm-link.md
+23
-2
@@ -7,11 +7,32 @@ github_branch: v8
7
github_path: docs/content/commands/npm-link.md
8
redirect_from:
9
- /cli-commands/link
10
- - /cli-commands/link.html
10
- /cli-commands/npm-link
11
+ - /cli-documentation/cli-commands/link
12
+ - /cli-documentation/cli-commands/npm-link
13
+ - /cli-documentation/commands/link
14
+ - /cli-documentation/commands/npm-link
15
+ - /cli-documentation/link
16
+ - /cli-documentation/npm-link
17
+ - /cli-documentation/v8/cli-commands/link
18
+ - /cli-documentation/v8/cli-commands/npm-link
19
+ - /cli-documentation/v8/commands/link
20
+ - /cli-documentation/v8/commands/npm-link
21
+ - /cli-documentation/v8/link
22
+ - /cli-documentation/v8/npm-link
23
+ - /cli/cli-commands/link
24
+ - /cli/cli-commands/npm-link
25
- /cli/commands/link
26
+ - /cli/commands/npm-link
27
- /cli/link
14
- - /cli/link.html
28
+ - /cli/npm-link
29
+ - /cli/v8/cli-commands/link
30
+ - /cli/v8/cli-commands/npm-link
31
+ - /cli/v8/commands/link
32
+ - /cli/v8/link
33
+ - /cli/v8/npm-link
34
+ - /commands/link
35
+ - /commands/npm-link
36
---
37
38
### Synopsis
content/cli/v8/commands/npm-logout.md
+23
-2
@@ -7,11 +7,32 @@ github_branch: v8
7
github_path: docs/content/commands/npm-logout.md
8
redirect_from:
9
- /cli-commands/logout
10
- - /cli-commands/logout.html
10
- /cli-commands/npm-logout
11
+ - /cli-documentation/cli-commands/logout
12
+ - /cli-documentation/cli-commands/npm-logout
13
+ - /cli-documentation/commands/logout
14
+ - /cli-documentation/commands/npm-logout
15
+ - /cli-documentation/logout
16
+ - /cli-documentation/npm-logout
17
+ - /cli-documentation/v8/cli-commands/logout
18
+ - /cli-documentation/v8/cli-commands/npm-logout
19
+ - /cli-documentation/v8/commands/logout
20
+ - /cli-documentation/v8/commands/npm-logout
21
+ - /cli-documentation/v8/logout
22
+ - /cli-documentation/v8/npm-logout
23
+ - /cli/cli-commands/logout
24
+ - /cli/cli-commands/npm-logout
25
- /cli/commands/logout
26
+ - /cli/commands/npm-logout
27
- /cli/logout
14
- - /cli/logout.html
28
+ - /cli/npm-logout
29
+ - /cli/v8/cli-commands/logout
30
+ - /cli/v8/cli-commands/npm-logout
31
+ - /cli/v8/commands/logout
32
+ - /cli/v8/logout
33
+ - /cli/v8/npm-logout
34
+ - /commands/logout
35
+ - /commands/npm-logout
36
---
37
38
### Synopsis
content/cli/v8/commands/npm-ls.md
+23
-2
@@ -7,11 +7,32 @@ github_branch: v8
7
github_path: docs/content/commands/npm-ls.md
8
redirect_from:
9
- /cli-commands/ls
10
- - /cli-commands/ls.html
10
- /cli-commands/npm-ls
11
+ - /cli-documentation/cli-commands/ls
12
+ - /cli-documentation/cli-commands/npm-ls
13
+ - /cli-documentation/commands/ls
14
+ - /cli-documentation/commands/npm-ls
15
+ - /cli-documentation/ls
16
+ - /cli-documentation/npm-ls
17
+ - /cli-documentation/v8/cli-commands/ls
18
+ - /cli-documentation/v8/cli-commands/npm-ls
19
+ - /cli-documentation/v8/commands/ls
20
+ - /cli-documentation/v8/commands/npm-ls
21
+ - /cli-documentation/v8/ls
22
+ - /cli-documentation/v8/npm-ls
23
+ - /cli/cli-commands/ls
24
+ - /cli/cli-commands/npm-ls
25
- /cli/commands/ls
26
+ - /cli/commands/npm-ls
27
- /cli/ls
14
- - /cli/ls.html
28
+ - /cli/npm-ls
29
+ - /cli/v8/cli-commands/ls
30
+ - /cli/v8/cli-commands/npm-ls
31
+ - /cli/v8/commands/ls
32
+ - /cli/v8/ls
33
+ - /cli/v8/npm-ls
34
+ - /commands/ls
35
+ - /commands/npm-ls
36
---
37
38
### Synopsis
content/cli/v8/commands/npm-org.md
+23
-2
@@ -8,10 +8,31 @@ github_path: docs/content/commands/npm-org.md
8
redirect_from:
9
- /cli-commands/npm-org
10
- /cli-commands/org
11
- - /cli-commands/org.html
11
+ - /cli-documentation/cli-commands/npm-org
12
+ - /cli-documentation/cli-commands/org
13
+ - /cli-documentation/commands/npm-org
14
+ - /cli-documentation/commands/org
15
+ - /cli-documentation/npm-org
16
+ - /cli-documentation/org
17
+ - /cli-documentation/v8/cli-commands/npm-org
18
+ - /cli-documentation/v8/cli-commands/org
19
+ - /cli-documentation/v8/commands/npm-org
20
+ - /cli-documentation/v8/commands/org
21
+ - /cli-documentation/v8/npm-org
22
+ - /cli-documentation/v8/org
23
+ - /cli/cli-commands/npm-org
24
+ - /cli/cli-commands/org
25
+ - /cli/commands/npm-org
26
- /cli/commands/org
27
+ - /cli/npm-org
28
- /cli/org
14
- - /cli/org.html
29
+ - /cli/v8/cli-commands/npm-org
30
+ - /cli/v8/cli-commands/org
31
+ - /cli/v8/commands/org
32
+ - /cli/v8/npm-org
33
+ - /cli/v8/org
34
+ - /commands/npm-org
35
+ - /commands/org
36
---
37
38
### Synopsis
content/cli/v8/commands/npm-outdated.md
+23
-2
@@ -8,10 +8,31 @@ github_path: docs/content/commands/npm-outdated.md
8
redirect_from:
9
- /cli-commands/npm-outdated
10
- /cli-commands/outdated
11
- - /cli-commands/outdated.html
11
+ - /cli-documentation/cli-commands/npm-outdated
12
+ - /cli-documentation/cli-commands/outdated
13
+ - /cli-documentation/commands/npm-outdated
14
+ - /cli-documentation/commands/outdated
15
+ - /cli-documentation/npm-outdated
16
+ - /cli-documentation/outdated
17
+ - /cli-documentation/v8/cli-commands/npm-outdated
18
+ - /cli-documentation/v8/cli-commands/outdated
19
+ - /cli-documentation/v8/commands/npm-outdated
20
+ - /cli-documentation/v8/commands/outdated
21
+ - /cli-documentation/v8/npm-outdated
22
+ - /cli-documentation/v8/outdated
23
+ - /cli/cli-commands/npm-outdated
24
+ - /cli/cli-commands/outdated
25
+ - /cli/commands/npm-outdated
26
- /cli/commands/outdated
27
+ - /cli/npm-outdated
28
- /cli/outdated
14
- - /cli/outdated.html
29
+ - /cli/v8/cli-commands/npm-outdated
30
+ - /cli/v8/cli-commands/outdated
31
+ - /cli/v8/commands/outdated
32
+ - /cli/v8/npm-outdated
33
+ - /cli/v8/outdated
34
+ - /commands/npm-outdated
35
+ - /commands/outdated
36
---
37
38
### Synopsis
content/cli/v8/commands/npm-owner.md
+23
-2
@@ -8,10 +8,31 @@ github_path: docs/content/commands/npm-owner.md
8
redirect_from:
9
- /cli-commands/npm-owner
10
- /cli-commands/owner
11
- - /cli-commands/owner.html
11
+ - /cli-documentation/cli-commands/npm-owner
12
+ - /cli-documentation/cli-commands/owner
13
+ - /cli-documentation/commands/npm-owner
14
+ - /cli-documentation/commands/owner
15
+ - /cli-documentation/npm-owner
16
+ - /cli-documentation/owner
17
+ - /cli-documentation/v8/cli-commands/npm-owner
18
+ - /cli-documentation/v8/cli-commands/owner
19
+ - /cli-documentation/v8/commands/npm-owner
20
+ - /cli-documentation/v8/commands/owner
21
+ - /cli-documentation/v8/npm-owner
22
+ - /cli-documentation/v8/owner
23
+ - /cli/cli-commands/npm-owner
24
+ - /cli/cli-commands/owner
25
+ - /cli/commands/npm-owner
26
- /cli/commands/owner
27
+ - /cli/npm-owner
28
- /cli/owner
14
- - /cli/owner.html
29
+ - /cli/v8/cli-commands/npm-owner
30
+ - /cli/v8/cli-commands/owner
31
+ - /cli/v8/commands/owner
32
+ - /cli/v8/npm-owner
33
+ - /cli/v8/owner
34
+ - /commands/npm-owner
35
+ - /commands/owner
36
---
37
38
### Synopsis
content/cli/v8/commands/npm-pack.md
+23
-2
@@ -8,10 +8,31 @@ github_path: docs/content/commands/npm-pack.md
8
redirect_from:
9
- /cli-commands/npm-pack
10
- /cli-commands/pack
11
- - /cli-commands/pack.html
11
+ - /cli-documentation/cli-commands/npm-pack
12
+ - /cli-documentation/cli-commands/pack
13
+ - /cli-documentation/commands/npm-pack
14
+ - /cli-documentation/commands/pack
15
+ - /cli-documentation/npm-pack
16
+ - /cli-documentation/pack
17
+ - /cli-documentation/v8/cli-commands/npm-pack
18
+ - /cli-documentation/v8/cli-commands/pack
19
+ - /cli-documentation/v8/commands/npm-pack
20
+ - /cli-documentation/v8/commands/pack
21
+ - /cli-documentation/v8/npm-pack
22
+ - /cli-documentation/v8/pack
23
+ - /cli/cli-commands/npm-pack
24
+ - /cli/cli-commands/pack
25
+ - /cli/commands/npm-pack
26
- /cli/commands/pack
27
+ - /cli/npm-pack
28
- /cli/pack
14
- - /cli/pack.html
29
+ - /cli/v8/cli-commands/npm-pack
30
+ - /cli/v8/cli-commands/pack
31
+ - /cli/v8/commands/pack
32
+ - /cli/v8/npm-pack
33
+ - /cli/v8/pack
34
+ - /commands/npm-pack
35
+ - /commands/pack
36
---
37
38
### Synopsis
content/cli/v8/commands/npm-ping.md
+23
-2
@@ -8,10 +8,31 @@ github_path: docs/content/commands/npm-ping.md
8
redirect_from:
9
- /cli-commands/npm-ping
10
- /cli-commands/ping
11
- - /cli-commands/ping.html
11
+ - /cli-documentation/cli-commands/npm-ping
12
+ - /cli-documentation/cli-commands/ping
13
+ - /cli-documentation/commands/npm-ping
14
+ - /cli-documentation/commands/ping
15
+ - /cli-documentation/npm-ping
16
+ - /cli-documentation/ping
17
+ - /cli-documentation/v8/cli-commands/npm-ping
18
+ - /cli-documentation/v8/cli-commands/ping
19
+ - /cli-documentation/v8/commands/npm-ping
20
+ - /cli-documentation/v8/commands/ping
21
+ - /cli-documentation/v8/npm-ping
22
+ - /cli-documentation/v8/ping
23
+ - /cli/cli-commands/npm-ping
24
+ - /cli/cli-commands/ping
25
+ - /cli/commands/npm-ping
26
- /cli/commands/ping
27
+ - /cli/npm-ping
28
- /cli/ping
14
- - /cli/ping.html
29
+ - /cli/v8/cli-commands/npm-ping
30
+ - /cli/v8/cli-commands/ping
31
+ - /cli/v8/commands/ping
32
+ - /cli/v8/npm-ping
33
+ - /cli/v8/ping
34
+ - /commands/npm-ping
35
+ - /commands/ping
36
---
37
38
### Synopsis
content/cli/v8/commands/npm-pkg.md
+23
-2
@@ -8,10 +8,31 @@ github_path: docs/content/commands/npm-pkg.md
8
redirect_from:
9
- /cli-commands/npm-pkg
10
- /cli-commands/pkg
11
- - /cli-commands/pkg.html
11
+ - /cli-documentation/cli-commands/npm-pkg
12
+ - /cli-documentation/cli-commands/pkg
13
+ - /cli-documentation/commands/npm-pkg
14
+ - /cli-documentation/commands/pkg
15
+ - /cli-documentation/npm-pkg
16
+ - /cli-documentation/pkg
17
+ - /cli-documentation/v8/cli-commands/npm-pkg
18
+ - /cli-documentation/v8/cli-commands/pkg
19
+ - /cli-documentation/v8/commands/npm-pkg
20
+ - /cli-documentation/v8/commands/pkg
21
+ - /cli-documentation/v8/npm-pkg
22
+ - /cli-documentation/v8/pkg
23
+ - /cli/cli-commands/npm-pkg
24
+ - /cli/cli-commands/pkg
25
+ - /cli/commands/npm-pkg
26
- /cli/commands/pkg
27
+ - /cli/npm-pkg
28
- /cli/pkg
14
- - /cli/pkg.html
29
+ - /cli/v8/cli-commands/npm-pkg
30
+ - /cli/v8/cli-commands/pkg
31
+ - /cli/v8/commands/pkg
32
+ - /cli/v8/npm-pkg
33
+ - /cli/v8/pkg
34
+ - /commands/npm-pkg
35
+ - /commands/pkg
36
---
37
38
### Synopsis
content/cli/v8/commands/npm-prefix.md
+23
-2
@@ -8,10 +8,31 @@ github_path: docs/content/commands/npm-prefix.md
8
redirect_from:
9
- /cli-commands/npm-prefix
10
- /cli-commands/prefix
11
- - /cli-commands/prefix.html
11
+ - /cli-documentation/cli-commands/npm-prefix
12
+ - /cli-documentation/cli-commands/prefix
13
+ - /cli-documentation/commands/npm-prefix
14
+ - /cli-documentation/commands/prefix
15
+ - /cli-documentation/npm-prefix
16
+ - /cli-documentation/prefix
17
+ - /cli-documentation/v8/cli-commands/npm-prefix
18
+ - /cli-documentation/v8/cli-commands/prefix
19
+ - /cli-documentation/v8/commands/npm-prefix
20
+ - /cli-documentation/v8/commands/prefix
21
+ - /cli-documentation/v8/npm-prefix
22
+ - /cli-documentation/v8/prefix
23
+ - /cli/cli-commands/npm-prefix
24
+ - /cli/cli-commands/prefix
25
+ - /cli/commands/npm-prefix
26
- /cli/commands/prefix
27
+ - /cli/npm-prefix
28
- /cli/prefix
14
- - /cli/prefix.html
29
+ - /cli/v8/cli-commands/npm-prefix
30
+ - /cli/v8/cli-commands/prefix
31
+ - /cli/v8/commands/prefix
32
+ - /cli/v8/npm-prefix
33
+ - /cli/v8/prefix
34
+ - /commands/npm-prefix
35
+ - /commands/prefix
36
---
37
38
### Synopsis
content/cli/v8/commands/npm-profile.md
+23
-2
@@ -8,10 +8,31 @@ github_path: docs/content/commands/npm-profile.md
8
redirect_from:
9
- /cli-commands/npm-profile
10
- /cli-commands/profile
11
- - /cli-commands/profile.html
11
+ - /cli-documentation/cli-commands/npm-profile
12
+ - /cli-documentation/cli-commands/profile
13
+ - /cli-documentation/commands/npm-profile
14
+ - /cli-documentation/commands/profile
15
+ - /cli-documentation/npm-profile
16
+ - /cli-documentation/profile
17
+ - /cli-documentation/v8/cli-commands/npm-profile
18
+ - /cli-documentation/v8/cli-commands/profile
19
+ - /cli-documentation/v8/commands/npm-profile
20
+ - /cli-documentation/v8/commands/profile
21
+ - /cli-documentation/v8/npm-profile
22
+ - /cli-documentation/v8/profile
23
+ - /cli/cli-commands/npm-profile
24
+ - /cli/cli-commands/profile
25
+ - /cli/commands/npm-profile
26
- /cli/commands/profile
27
+ - /cli/npm-profile
28
- /cli/profile
14
- - /cli/profile.html
29
+ - /cli/v8/cli-commands/npm-profile
30
+ - /cli/v8/cli-commands/profile
31
+ - /cli/v8/commands/profile
32
+ - /cli/v8/npm-profile
33
+ - /cli/v8/profile
34
+ - /commands/npm-profile
35
+ - /commands/profile
36
---
37
38
### Synopsis
content/cli/v8/commands/npm-prune.md
+23
-2
@@ -8,10 +8,31 @@ github_path: docs/content/commands/npm-prune.md
8
redirect_from:
9
- /cli-commands/npm-prune
10
- /cli-commands/prune
11
- - /cli-commands/prune.html
11
+ - /cli-documentation/cli-commands/npm-prune
12
+ - /cli-documentation/cli-commands/prune
13
+ - /cli-documentation/commands/npm-prune
14
+ - /cli-documentation/commands/prune
15
+ - /cli-documentation/npm-prune
16
+ - /cli-documentation/prune
17
+ - /cli-documentation/v8/cli-commands/npm-prune
18
+ - /cli-documentation/v8/cli-commands/prune
19
+ - /cli-documentation/v8/commands/npm-prune
20
+ - /cli-documentation/v8/commands/prune
21
+ - /cli-documentation/v8/npm-prune
22
+ - /cli-documentation/v8/prune
23
+ - /cli/cli-commands/npm-prune
24
+ - /cli/cli-commands/prune
25
+ - /cli/commands/npm-prune
26
- /cli/commands/prune
27
+ - /cli/npm-prune
28
- /cli/prune
14
- - /cli/prune.html
29
+ - /cli/v8/cli-commands/npm-prune
30
+ - /cli/v8/cli-commands/prune
31
+ - /cli/v8/commands/prune
32
+ - /cli/v8/npm-prune
33
+ - /cli/v8/prune
34
+ - /commands/npm-prune
35
+ - /commands/prune
36
---
37
38
### Synopsis
content/cli/v8/commands/npm-publish.md
+23
-2
@@ -8,10 +8,31 @@ github_path: docs/content/commands/npm-publish.md
8
redirect_from:
9
- /cli-commands/npm-publish
10
- /cli-commands/publish
11
- - /cli-commands/publish.html
11
+ - /cli-documentation/cli-commands/npm-publish
12
+ - /cli-documentation/cli-commands/publish
13
+ - /cli-documentation/commands/npm-publish
14
+ - /cli-documentation/commands/publish
15
+ - /cli-documentation/npm-publish
16
+ - /cli-documentation/publish
17
+ - /cli-documentation/v8/cli-commands/npm-publish
18
+ - /cli-documentation/v8/cli-commands/publish
19
+ - /cli-documentation/v8/commands/npm-publish
20
+ - /cli-documentation/v8/commands/publish
21
+ - /cli-documentation/v8/npm-publish
22
+ - /cli-documentation/v8/publish
23
+ - /cli/cli-commands/npm-publish
24
+ - /cli/cli-commands/publish
25
+ - /cli/commands/npm-publish
26
- /cli/commands/publish
27
+ - /cli/npm-publish
28
- /cli/publish
14
- - /cli/publish.html
29
+ - /cli/v8/cli-commands/npm-publish
30
+ - /cli/v8/cli-commands/publish
31
+ - /cli/v8/commands/publish
32
+ - /cli/v8/npm-publish
33
+ - /cli/v8/publish
34
+ - /commands/npm-publish
35
+ - /commands/publish
36
---
37
38
### Synopsis
content/cli/v8/commands/npm-query.md
+23
-2
@@ -8,10 +8,31 @@ github_path: docs/content/commands/npm-query.md
8
redirect_from:
9
- /cli-commands/npm-query
10
- /cli-commands/query
11
- - /cli-commands/query.html
11
+ - /cli-documentation/cli-commands/npm-query
12
+ - /cli-documentation/cli-commands/query
13
+ - /cli-documentation/commands/npm-query
14
+ - /cli-documentation/commands/query
15
+ - /cli-documentation/npm-query
16
+ - /cli-documentation/query
17
+ - /cli-documentation/v8/cli-commands/npm-query
18
+ - /cli-documentation/v8/cli-commands/query
19
+ - /cli-documentation/v8/commands/npm-query
20
+ - /cli-documentation/v8/commands/query
21
+ - /cli-documentation/v8/npm-query
22
+ - /cli-documentation/v8/query
23
+ - /cli/cli-commands/npm-query
24
+ - /cli/cli-commands/query
25
+ - /cli/commands/npm-query
26
- /cli/commands/query
27
+ - /cli/npm-query
28
- /cli/query
14
- - /cli/query.html
29
+ - /cli/v8/cli-commands/npm-query
30
+ - /cli/v8/cli-commands/query
31
+ - /cli/v8/commands/query
32
+ - /cli/v8/npm-query
33
+ - /cli/v8/query
34
+ - /commands/npm-query
35
+ - /commands/query
36
---
37
38
### Synopsis
content/cli/v8/commands/npm-rebuild.md
+23
-2
@@ -8,10 +8,31 @@ github_path: docs/content/commands/npm-rebuild.md
8
redirect_from:
9
- /cli-commands/npm-rebuild
10
- /cli-commands/rebuild
11
- - /cli-commands/rebuild.html
11
+ - /cli-documentation/cli-commands/npm-rebuild
12
+ - /cli-documentation/cli-commands/rebuild
13
+ - /cli-documentation/commands/npm-rebuild
14
+ - /cli-documentation/commands/rebuild
15
+ - /cli-documentation/npm-rebuild
16
+ - /cli-documentation/rebuild
17
+ - /cli-documentation/v8/cli-commands/npm-rebuild
18
+ - /cli-documentation/v8/cli-commands/rebuild
19
+ - /cli-documentation/v8/commands/npm-rebuild
20
+ - /cli-documentation/v8/commands/rebuild
21
+ - /cli-documentation/v8/npm-rebuild
22
+ - /cli-documentation/v8/rebuild
23
+ - /cli/cli-commands/npm-rebuild
24
+ - /cli/cli-commands/rebuild
25
+ - /cli/commands/npm-rebuild
26
- /cli/commands/rebuild
27
+ - /cli/npm-rebuild
28
- /cli/rebuild
14
- - /cli/rebuild.html
29
+ - /cli/v8/cli-commands/npm-rebuild
30
+ - /cli/v8/cli-commands/rebuild
31
+ - /cli/v8/commands/rebuild
32
+ - /cli/v8/npm-rebuild
33
+ - /cli/v8/rebuild
34
+ - /commands/npm-rebuild
35
+ - /commands/rebuild
36
---
37
38
### Synopsis
content/cli/v8/commands/npm-repo.md
+23
-2
@@ -8,10 +8,31 @@ github_path: docs/content/commands/npm-repo.md
8
redirect_from:
9
- /cli-commands/npm-repo
10
- /cli-commands/repo
11
- - /cli-commands/repo.html
11
+ - /cli-documentation/cli-commands/npm-repo
12
+ - /cli-documentation/cli-commands/repo
13
+ - /cli-documentation/commands/npm-repo
14
+ - /cli-documentation/commands/repo
15
+ - /cli-documentation/npm-repo
16
+ - /cli-documentation/repo
17
+ - /cli-documentation/v8/cli-commands/npm-repo
18
+ - /cli-documentation/v8/cli-commands/repo
19
+ - /cli-documentation/v8/commands/npm-repo
20
+ - /cli-documentation/v8/commands/repo
21
+ - /cli-documentation/v8/npm-repo
22
+ - /cli-documentation/v8/repo
23
+ - /cli/cli-commands/npm-repo
24
+ - /cli/cli-commands/repo
25
+ - /cli/commands/npm-repo
26
- /cli/commands/repo
27
+ - /cli/npm-repo
28
- /cli/repo
14
- - /cli/repo.html
29
+ - /cli/v8/cli-commands/npm-repo
30
+ - /cli/v8/cli-commands/repo
31
+ - /cli/v8/commands/repo
32
+ - /cli/v8/npm-repo
33
+ - /cli/v8/repo
34
+ - /commands/npm-repo
35
+ - /commands/repo
36
---
37
38
### Synopsis
content/cli/v8/commands/npm-restart.md
+23
-2
@@ -8,10 +8,31 @@ github_path: docs/content/commands/npm-restart.md
8
redirect_from:
9
- /cli-commands/npm-restart
10
- /cli-commands/restart
11
- - /cli-commands/restart.html
11
+ - /cli-documentation/cli-commands/npm-restart
12
+ - /cli-documentation/cli-commands/restart
13
+ - /cli-documentation/commands/npm-restart
14
+ - /cli-documentation/commands/restart
15
+ - /cli-documentation/npm-restart
16
+ - /cli-documentation/restart
17
+ - /cli-documentation/v8/cli-commands/npm-restart
18
+ - /cli-documentation/v8/cli-commands/restart
19
+ - /cli-documentation/v8/commands/npm-restart
20
+ - /cli-documentation/v8/commands/restart
21
+ - /cli-documentation/v8/npm-restart
22
+ - /cli-documentation/v8/restart
23
+ - /cli/cli-commands/npm-restart
24
+ - /cli/cli-commands/restart
25
+ - /cli/commands/npm-restart
26
- /cli/commands/restart
27
+ - /cli/npm-restart
28
- /cli/restart
14
- - /cli/restart.html
29
+ - /cli/v8/cli-commands/npm-restart
30
+ - /cli/v8/cli-commands/restart
31
+ - /cli/v8/commands/restart
32
+ - /cli/v8/npm-restart
33
+ - /cli/v8/restart
34
+ - /commands/npm-restart
35
+ - /commands/restart
36
---
37
38
### Synopsis
content/cli/v8/commands/npm-root.md
+23
-2
@@ -8,10 +8,31 @@ github_path: docs/content/commands/npm-root.md
8
redirect_from:
9
- /cli-commands/npm-root
10
- /cli-commands/root
11
- - /cli-commands/root.html
11
+ - /cli-documentation/cli-commands/npm-root
12
+ - /cli-documentation/cli-commands/root
13
+ - /cli-documentation/commands/npm-root
14
+ - /cli-documentation/commands/root
15
+ - /cli-documentation/npm-root
16
+ - /cli-documentation/root
17
+ - /cli-documentation/v8/cli-commands/npm-root
18
+ - /cli-documentation/v8/cli-commands/root
19
+ - /cli-documentation/v8/commands/npm-root
20
+ - /cli-documentation/v8/commands/root
21
+ - /cli-documentation/v8/npm-root
22
+ - /cli-documentation/v8/root
23
+ - /cli/cli-commands/npm-root
24
+ - /cli/cli-commands/root
25
+ - /cli/commands/npm-root
26
- /cli/commands/root
27
+ - /cli/npm-root
28
- /cli/root
14
- - /cli/root.html
29
+ - /cli/v8/cli-commands/npm-root
30
+ - /cli/v8/cli-commands/root
31
+ - /cli/v8/commands/root
32
+ - /cli/v8/npm-root
33
+ - /cli/v8/root
34
+ - /commands/npm-root
35
+ - /commands/root
36
---
37
38
### Synopsis
content/cli/v8/commands/npm-run-script.md
+23
-2
@@ -8,10 +8,31 @@ github_path: docs/content/commands/npm-run-script.md
8
redirect_from:
9
- /cli-commands/npm-run-script
10
- /cli-commands/run-script
11
- - /cli-commands/run-script.html
11
+ - /cli-documentation/cli-commands/npm-run-script
12
+ - /cli-documentation/cli-commands/run-script
13
+ - /cli-documentation/commands/npm-run-script
14
+ - /cli-documentation/commands/run-script
15
+ - /cli-documentation/npm-run-script
16
+ - /cli-documentation/run-script
17
+ - /cli-documentation/v8/cli-commands/npm-run-script
18
+ - /cli-documentation/v8/cli-commands/run-script
19
+ - /cli-documentation/v8/commands/npm-run-script
20
+ - /cli-documentation/v8/commands/run-script
21
+ - /cli-documentation/v8/npm-run-script
22
+ - /cli-documentation/v8/run-script
23
+ - /cli/cli-commands/npm-run-script
24
+ - /cli/cli-commands/run-script
25
+ - /cli/commands/npm-run-script
26
- /cli/commands/run-script
27
+ - /cli/npm-run-script
28
- /cli/run-script
14
- - /cli/run-script.html
29
+ - /cli/v8/cli-commands/npm-run-script
30
+ - /cli/v8/cli-commands/run-script
31
+ - /cli/v8/commands/run-script
32
+ - /cli/v8/npm-run-script
33
+ - /cli/v8/run-script
34
+ - /commands/npm-run-script
35
+ - /commands/run-script
36
---
37
38
### Synopsis
content/cli/v8/commands/npm-search.md
+23
-2
@@ -8,10 +8,31 @@ github_path: docs/content/commands/npm-search.md
8
redirect_from:
9
- /cli-commands/npm-search
10
- /cli-commands/search
11
- - /cli-commands/search.html
11
+ - /cli-documentation/cli-commands/npm-search
12
+ - /cli-documentation/cli-commands/search
13
+ - /cli-documentation/commands/npm-search
14
+ - /cli-documentation/commands/search
15
+ - /cli-documentation/npm-search
16
+ - /cli-documentation/search
17
+ - /cli-documentation/v8/cli-commands/npm-search
18
+ - /cli-documentation/v8/cli-commands/search
19
+ - /cli-documentation/v8/commands/npm-search
20
+ - /cli-documentation/v8/commands/search
21
+ - /cli-documentation/v8/npm-search
22
+ - /cli-documentation/v8/search
23
+ - /cli/cli-commands/npm-search
24
+ - /cli/cli-commands/search
25
+ - /cli/commands/npm-search
26
- /cli/commands/search
27
+ - /cli/npm-search
28
- /cli/search
14
- - /cli/search.html
29
+ - /cli/v8/cli-commands/npm-search
30
+ - /cli/v8/cli-commands/search
31
+ - /cli/v8/commands/search
32
+ - /cli/v8/npm-search
33
+ - /cli/v8/search
34
+ - /commands/npm-search
35
+ - /commands/search
36
---
37
38
### Synopsis
content/cli/v8/commands/npm-set-script.md
+23
-2
@@ -8,10 +8,31 @@ github_path: docs/content/commands/npm-set-script.md
8
redirect_from:
9
- /cli-commands/npm-set-script
10
- /cli-commands/set-script
11
- - /cli-commands/set-script.html
11
+ - /cli-documentation/cli-commands/npm-set-script
12
+ - /cli-documentation/cli-commands/set-script
13
+ - /cli-documentation/commands/npm-set-script
14
+ - /cli-documentation/commands/set-script
15
+ - /cli-documentation/npm-set-script
16
+ - /cli-documentation/set-script
17
+ - /cli-documentation/v8/cli-commands/npm-set-script
18
+ - /cli-documentation/v8/cli-commands/set-script
19
+ - /cli-documentation/v8/commands/npm-set-script
20
+ - /cli-documentation/v8/commands/set-script
21
+ - /cli-documentation/v8/npm-set-script
22
+ - /cli-documentation/v8/set-script
23
+ - /cli/cli-commands/npm-set-script
24
+ - /cli/cli-commands/set-script
25
+ - /cli/commands/npm-set-script
26
- /cli/commands/set-script
27
+ - /cli/npm-set-script
28
- /cli/set-script
14
- - /cli/set-script.html
29
+ - /cli/v8/cli-commands/npm-set-script
30
+ - /cli/v8/cli-commands/set-script
31
+ - /cli/v8/commands/set-script
32
+ - /cli/v8/npm-set-script
33
+ - /cli/v8/set-script
34
+ - /commands/npm-set-script
35
+ - /commands/set-script
36
---
37
38
### Synopsis
content/cli/v8/commands/npm-shrinkwrap.md
+23
-2
@@ -8,10 +8,31 @@ github_path: docs/content/commands/npm-shrinkwrap.md
8
redirect_from:
9
- /cli-commands/npm-shrinkwrap
10
- /cli-commands/shrinkwrap
11
- - /cli-commands/shrinkwrap.html
11
+ - /cli-documentation/cli-commands/npm-shrinkwrap
12
+ - /cli-documentation/cli-commands/shrinkwrap
13
+ - /cli-documentation/commands/npm-shrinkwrap
14
+ - /cli-documentation/commands/shrinkwrap
15
+ - /cli-documentation/npm-shrinkwrap
16
+ - /cli-documentation/shrinkwrap
17
+ - /cli-documentation/v8/cli-commands/npm-shrinkwrap
18
+ - /cli-documentation/v8/cli-commands/shrinkwrap
19
+ - /cli-documentation/v8/commands/npm-shrinkwrap
20
+ - /cli-documentation/v8/commands/shrinkwrap
21
+ - /cli-documentation/v8/npm-shrinkwrap
22
+ - /cli-documentation/v8/shrinkwrap
23
+ - /cli/cli-commands/npm-shrinkwrap
24
+ - /cli/cli-commands/shrinkwrap
25
+ - /cli/commands/npm-shrinkwrap
26
- /cli/commands/shrinkwrap
27
+ - /cli/npm-shrinkwrap
28
- /cli/shrinkwrap
14
- - /cli/shrinkwrap.html
29
+ - /cli/v8/cli-commands/npm-shrinkwrap
30
+ - /cli/v8/cli-commands/shrinkwrap
31
+ - /cli/v8/commands/shrinkwrap
32
+ - /cli/v8/npm-shrinkwrap
33
+ - /cli/v8/shrinkwrap
34
+ - /commands/npm-shrinkwrap
35
+ - /commands/shrinkwrap
36
---
37
38
### Synopsis
content/cli/v8/commands/npm-star.md
+23
-2
@@ -8,10 +8,31 @@ github_path: docs/content/commands/npm-star.md
8
redirect_from:
9
- /cli-commands/npm-star
10
- /cli-commands/star
11
- - /cli-commands/star.html
11
+ - /cli-documentation/cli-commands/npm-star
12
+ - /cli-documentation/cli-commands/star
13
+ - /cli-documentation/commands/npm-star
14
+ - /cli-documentation/commands/star
15
+ - /cli-documentation/npm-star
16
+ - /cli-documentation/star
17
+ - /cli-documentation/v8/cli-commands/npm-star
18
+ - /cli-documentation/v8/cli-commands/star
19
+ - /cli-documentation/v8/commands/npm-star
20
+ - /cli-documentation/v8/commands/star
21
+ - /cli-documentation/v8/npm-star
22
+ - /cli-documentation/v8/star
23
+ - /cli/cli-commands/npm-star
24
+ - /cli/cli-commands/star
25
+ - /cli/commands/npm-star
26
- /cli/commands/star
27
+ - /cli/npm-star
28
- /cli/star
14
- - /cli/star.html
29
+ - /cli/v8/cli-commands/npm-star
30
+ - /cli/v8/cli-commands/star
31
+ - /cli/v8/commands/star
32
+ - /cli/v8/npm-star
33
+ - /cli/v8/star
34
+ - /commands/npm-star
35
+ - /commands/star
36
---
37
38
### Synopsis
content/cli/v8/commands/npm-stars.md
+23
-2
@@ -8,10 +8,31 @@ github_path: docs/content/commands/npm-stars.md
8
redirect_from:
9
- /cli-commands/npm-stars
10
- /cli-commands/stars
11
- - /cli-commands/stars.html
11
+ - /cli-documentation/cli-commands/npm-stars
12
+ - /cli-documentation/cli-commands/stars
13
+ - /cli-documentation/commands/npm-stars
14
+ - /cli-documentation/commands/stars
15
+ - /cli-documentation/npm-stars
16
+ - /cli-documentation/stars
17
+ - /cli-documentation/v8/cli-commands/npm-stars
18
+ - /cli-documentation/v8/cli-commands/stars
19
+ - /cli-documentation/v8/commands/npm-stars
20
+ - /cli-documentation/v8/commands/stars
21
+ - /cli-documentation/v8/npm-stars
22
+ - /cli-documentation/v8/stars
23
+ - /cli/cli-commands/npm-stars
24
+ - /cli/cli-commands/stars
25
+ - /cli/commands/npm-stars
26
- /cli/commands/stars
27
+ - /cli/npm-stars
28
- /cli/stars
14
- - /cli/stars.html
29
+ - /cli/v8/cli-commands/npm-stars
30
+ - /cli/v8/cli-commands/stars
31
+ - /cli/v8/commands/stars
32
+ - /cli/v8/npm-stars
33
+ - /cli/v8/stars
34
+ - /commands/npm-stars
35
+ - /commands/stars
36
---
37
38
### Synopsis
content/cli/v8/commands/npm-start.md
+23
-2
@@ -8,10 +8,31 @@ github_path: docs/content/commands/npm-start.md
8
redirect_from:
9
- /cli-commands/npm-start
10
- /cli-commands/start
11
- - /cli-commands/start.html
11
+ - /cli-documentation/cli-commands/npm-start
12
+ - /cli-documentation/cli-commands/start
13
+ - /cli-documentation/commands/npm-start
14
+ - /cli-documentation/commands/start
15
+ - /cli-documentation/npm-start
16
+ - /cli-documentation/start
17
+ - /cli-documentation/v8/cli-commands/npm-start
18
+ - /cli-documentation/v8/cli-commands/start
19
+ - /cli-documentation/v8/commands/npm-start
20
+ - /cli-documentation/v8/commands/start
21
+ - /cli-documentation/v8/npm-start
22
+ - /cli-documentation/v8/start
23
+ - /cli/cli-commands/npm-start
24
+ - /cli/cli-commands/start
25
+ - /cli/commands/npm-start
26
- /cli/commands/start
27
+ - /cli/npm-start
28
- /cli/start
14
- - /cli/start.html
29
+ - /cli/v8/cli-commands/npm-start
30
+ - /cli/v8/cli-commands/start
31
+ - /cli/v8/commands/start
32
+ - /cli/v8/npm-start
33
+ - /cli/v8/start
34
+ - /commands/npm-start
35
+ - /commands/start
36
---
37
38
### Synopsis
content/cli/v8/commands/npm-stop.md
+23
-2
@@ -8,10 +8,31 @@ github_path: docs/content/commands/npm-stop.md
8
redirect_from:
9
- /cli-commands/npm-stop
10
- /cli-commands/stop
11
- - /cli-commands/stop.html
11
+ - /cli-documentation/cli-commands/npm-stop
12
+ - /cli-documentation/cli-commands/stop
13
+ - /cli-documentation/commands/npm-stop
14
+ - /cli-documentation/commands/stop
15
+ - /cli-documentation/npm-stop
16
+ - /cli-documentation/stop
17
+ - /cli-documentation/v8/cli-commands/npm-stop
18
+ - /cli-documentation/v8/cli-commands/stop
19
+ - /cli-documentation/v8/commands/npm-stop
20
+ - /cli-documentation/v8/commands/stop
21
+ - /cli-documentation/v8/npm-stop
22
+ - /cli-documentation/v8/stop
23
+ - /cli/cli-commands/npm-stop
24
+ - /cli/cli-commands/stop
25
+ - /cli/commands/npm-stop
26
- /cli/commands/stop
27
+ - /cli/npm-stop
28
- /cli/stop
14
- - /cli/stop.html
29
+ - /cli/v8/cli-commands/npm-stop
30
+ - /cli/v8/cli-commands/stop
31
+ - /cli/v8/commands/stop
32
+ - /cli/v8/npm-stop
33
+ - /cli/v8/stop
34
+ - /commands/npm-stop
35
+ - /commands/stop
36
---
37
38
### Synopsis
content/cli/v8/commands/npm-team.md
+23
-2
@@ -8,10 +8,31 @@ github_path: docs/content/commands/npm-team.md
8
redirect_from:
9
- /cli-commands/npm-team
10
- /cli-commands/team
11
- - /cli-commands/team.html
11
+ - /cli-documentation/cli-commands/npm-team
12
+ - /cli-documentation/cli-commands/team
13
+ - /cli-documentation/commands/npm-team
14
+ - /cli-documentation/commands/team
15
+ - /cli-documentation/npm-team
16
+ - /cli-documentation/team
17
+ - /cli-documentation/v8/cli-commands/npm-team
18
+ - /cli-documentation/v8/cli-commands/team
19
+ - /cli-documentation/v8/commands/npm-team
20
+ - /cli-documentation/v8/commands/team
21
+ - /cli-documentation/v8/npm-team
22
+ - /cli-documentation/v8/team
23
+ - /cli/cli-commands/npm-team
24
+ - /cli/cli-commands/team
25
+ - /cli/commands/npm-team
26
- /cli/commands/team
27
+ - /cli/npm-team
28
- /cli/team
14
- - /cli/team.html
29
+ - /cli/v8/cli-commands/npm-team
30
+ - /cli/v8/cli-commands/team
31
+ - /cli/v8/commands/team
32
+ - /cli/v8/npm-team
33
+ - /cli/v8/team
34
+ - /commands/npm-team
35
+ - /commands/team
36
---
37
38
### Synopsis
content/cli/v8/commands/npm-test.md
+23
-2
@@ -8,10 +8,31 @@ github_path: docs/content/commands/npm-test.md
8
redirect_from:
9
- /cli-commands/npm-test
10
- /cli-commands/test
11
- - /cli-commands/test.html
11
+ - /cli-documentation/cli-commands/npm-test
12
+ - /cli-documentation/cli-commands/test
13
+ - /cli-documentation/commands/npm-test
14
+ - /cli-documentation/commands/test
15
+ - /cli-documentation/npm-test
16
+ - /cli-documentation/test
17
+ - /cli-documentation/v8/cli-commands/npm-test
18
+ - /cli-documentation/v8/cli-commands/test
19
+ - /cli-documentation/v8/commands/npm-test
20
+ - /cli-documentation/v8/commands/test
21
+ - /cli-documentation/v8/npm-test
22
+ - /cli-documentation/v8/test
23
+ - /cli/cli-commands/npm-test
24
+ - /cli/cli-commands/test
25
+ - /cli/commands/npm-test
26
- /cli/commands/test
27
+ - /cli/npm-test
28
- /cli/test
14
- - /cli/test.html
29
+ - /cli/v8/cli-commands/npm-test
30
+ - /cli/v8/cli-commands/test
31
+ - /cli/v8/commands/test
32
+ - /cli/v8/npm-test
33
+ - /cli/v8/test
34
+ - /commands/npm-test
35
+ - /commands/test
36
---
37
38
### Synopsis
content/cli/v8/commands/npm-token.md
+23
-2
@@ -8,10 +8,31 @@ github_path: docs/content/commands/npm-token.md
8
redirect_from:
9
- /cli-commands/npm-token
10
- /cli-commands/token
11
- - /cli-commands/token.html
11
+ - /cli-documentation/cli-commands/npm-token
12
+ - /cli-documentation/cli-commands/token
13
+ - /cli-documentation/commands/npm-token
14
+ - /cli-documentation/commands/token
15
+ - /cli-documentation/npm-token
16
+ - /cli-documentation/token
17
+ - /cli-documentation/v8/cli-commands/npm-token
18
+ - /cli-documentation/v8/cli-commands/token
19
+ - /cli-documentation/v8/commands/npm-token
20
+ - /cli-documentation/v8/commands/token
21
+ - /cli-documentation/v8/npm-token
22
+ - /cli-documentation/v8/token
23
+ - /cli/cli-commands/npm-token
24
+ - /cli/cli-commands/token
25
+ - /cli/commands/npm-token
26
- /cli/commands/token
27
+ - /cli/npm-token
28
- /cli/token
14
- - /cli/token.html
29
+ - /cli/v8/cli-commands/npm-token
30
+ - /cli/v8/cli-commands/token
31
+ - /cli/v8/commands/token
32
+ - /cli/v8/npm-token
33
+ - /cli/v8/token
34
+ - /commands/npm-token
35
+ - /commands/token
36
---
37
38
### Synopsis
content/cli/v8/commands/npm-uninstall.md
+23
-2
@@ -8,10 +8,31 @@ github_path: docs/content/commands/npm-uninstall.md
8
redirect_from:
9
- /cli-commands/npm-uninstall
10
- /cli-commands/uninstall
11
- - /cli-commands/uninstall.html
11
+ - /cli-documentation/cli-commands/npm-uninstall
12
+ - /cli-documentation/cli-commands/uninstall
13
+ - /cli-documentation/commands/npm-uninstall
14
+ - /cli-documentation/commands/uninstall
15
+ - /cli-documentation/npm-uninstall
16
+ - /cli-documentation/uninstall
17
+ - /cli-documentation/v8/cli-commands/npm-uninstall
18
+ - /cli-documentation/v8/cli-commands/uninstall
19
+ - /cli-documentation/v8/commands/npm-uninstall
20
+ - /cli-documentation/v8/commands/uninstall
21
+ - /cli-documentation/v8/npm-uninstall
22
+ - /cli-documentation/v8/uninstall
23
+ - /cli/cli-commands/npm-uninstall
24
+ - /cli/cli-commands/uninstall
25
+ - /cli/commands/npm-uninstall
26
- /cli/commands/uninstall
27
+ - /cli/npm-uninstall
28
- /cli/uninstall
14
- - /cli/uninstall.html
29
+ - /cli/v8/cli-commands/npm-uninstall
30
+ - /cli/v8/cli-commands/uninstall
31
+ - /cli/v8/commands/uninstall
32
+ - /cli/v8/npm-uninstall
33
+ - /cli/v8/uninstall
34
+ - /commands/npm-uninstall
35
+ - /commands/uninstall
36
---
37
38
### Synopsis
content/cli/v8/commands/npm-unpublish.md
+23
-2
@@ -8,10 +8,31 @@ github_path: docs/content/commands/npm-unpublish.md
8
redirect_from:
9
- /cli-commands/npm-unpublish
10
- /cli-commands/unpublish
11
- - /cli-commands/unpublish.html
11
+ - /cli-documentation/cli-commands/npm-unpublish
12
+ - /cli-documentation/cli-commands/unpublish
13
+ - /cli-documentation/commands/npm-unpublish
14
+ - /cli-documentation/commands/unpublish
15
+ - /cli-documentation/npm-unpublish
16
+ - /cli-documentation/unpublish
17
+ - /cli-documentation/v8/cli-commands/npm-unpublish
18
+ - /cli-documentation/v8/cli-commands/unpublish
19
+ - /cli-documentation/v8/commands/npm-unpublish
20
+ - /cli-documentation/v8/commands/unpublish
21
+ - /cli-documentation/v8/npm-unpublish
22
+ - /cli-documentation/v8/unpublish
23
+ - /cli/cli-commands/npm-unpublish
24
+ - /cli/cli-commands/unpublish
25
+ - /cli/commands/npm-unpublish
26
- /cli/commands/unpublish
27
+ - /cli/npm-unpublish
28
- /cli/unpublish
14
- - /cli/unpublish.html
29
+ - /cli/v8/cli-commands/npm-unpublish
30
+ - /cli/v8/cli-commands/unpublish
31
+ - /cli/v8/commands/unpublish
32
+ - /cli/v8/npm-unpublish
33
+ - /cli/v8/unpublish
34
+ - /commands/npm-unpublish
35
+ - /commands/unpublish
36
---
37
38
### Synopsis
content/cli/v8/commands/npm-unstar.md
+23
-2
@@ -8,10 +8,31 @@ github_path: docs/content/commands/npm-unstar.md
8
redirect_from:
9
- /cli-commands/npm-unstar
10
- /cli-commands/unstar
11
- - /cli-commands/unstar.html
11
+ - /cli-documentation/cli-commands/npm-unstar
12
+ - /cli-documentation/cli-commands/unstar
13
+ - /cli-documentation/commands/npm-unstar
14
+ - /cli-documentation/commands/unstar
15
+ - /cli-documentation/npm-unstar
16
+ - /cli-documentation/unstar
17
+ - /cli-documentation/v8/cli-commands/npm-unstar
18
+ - /cli-documentation/v8/cli-commands/unstar
19
+ - /cli-documentation/v8/commands/npm-unstar
20
+ - /cli-documentation/v8/commands/unstar
21
+ - /cli-documentation/v8/npm-unstar
22
+ - /cli-documentation/v8/unstar
23
+ - /cli/cli-commands/npm-unstar
24
+ - /cli/cli-commands/unstar
25
+ - /cli/commands/npm-unstar
26
- /cli/commands/unstar
27
+ - /cli/npm-unstar
28
- /cli/unstar
14
- - /cli/unstar.html
29
+ - /cli/v8/cli-commands/npm-unstar
30
+ - /cli/v8/cli-commands/unstar
31
+ - /cli/v8/commands/unstar
32
+ - /cli/v8/npm-unstar
33
+ - /cli/v8/unstar
34
+ - /commands/npm-unstar
35
+ - /commands/unstar
36
---
37
38
### Synopsis
content/cli/v8/commands/npm-update.md
+23
-2
@@ -8,10 +8,31 @@ github_path: docs/content/commands/npm-update.md
8
redirect_from:
9
- /cli-commands/npm-update
10
- /cli-commands/update
11
- - /cli-commands/update.html
11
+ - /cli-documentation/cli-commands/npm-update
12
+ - /cli-documentation/cli-commands/update
13
+ - /cli-documentation/commands/npm-update
14
+ - /cli-documentation/commands/update
15
+ - /cli-documentation/npm-update
16
+ - /cli-documentation/update
17
+ - /cli-documentation/v8/cli-commands/npm-update
18
+ - /cli-documentation/v8/cli-commands/update
19
+ - /cli-documentation/v8/commands/npm-update
20
+ - /cli-documentation/v8/commands/update
21
+ - /cli-documentation/v8/npm-update
22
+ - /cli-documentation/v8/update
23
+ - /cli/cli-commands/npm-update
24
+ - /cli/cli-commands/update
25
+ - /cli/commands/npm-update
26
- /cli/commands/update
27
+ - /cli/npm-update
28
- /cli/update
14
- - /cli/update.html
29
+ - /cli/v8/cli-commands/npm-update
30
+ - /cli/v8/cli-commands/update
31
+ - /cli/v8/commands/update
32
+ - /cli/v8/npm-update
33
+ - /cli/v8/update
34
+ - /commands/npm-update
35
+ - /commands/update
36
---
37
38
### Synopsis
content/cli/v8/commands/npm-version.md
+23
-2
@@ -8,10 +8,31 @@ github_path: docs/content/commands/npm-version.md
8
redirect_from:
9
- /cli-commands/npm-version
10
- /cli-commands/version
11
- - /cli-commands/version.html
11
+ - /cli-documentation/cli-commands/npm-version
12
+ - /cli-documentation/cli-commands/version
13
+ - /cli-documentation/commands/npm-version
14
+ - /cli-documentation/commands/version
15
+ - /cli-documentation/npm-version
16
+ - /cli-documentation/v8/cli-commands/npm-version
17
+ - /cli-documentation/v8/cli-commands/version
18
+ - /cli-documentation/v8/commands/npm-version
19
+ - /cli-documentation/v8/commands/version
20
+ - /cli-documentation/v8/npm-version
21
+ - /cli-documentation/v8/version
22
+ - /cli-documentation/version
23
+ - /cli/cli-commands/npm-version
24
+ - /cli/cli-commands/version
25
+ - /cli/commands/npm-version
26
- /cli/commands/version
27
+ - /cli/npm-version
28
+ - /cli/v8/cli-commands/npm-version
29
+ - /cli/v8/cli-commands/version
30
+ - /cli/v8/commands/version
31
+ - /cli/v8/npm-version
32
+ - /cli/v8/version
33
- /cli/version
14
- - /cli/version.html
34
+ - /commands/npm-version
35
+ - /commands/version
36
---
37
38
### Synopsis
content/cli/v8/commands/npm-view.md
+23
-2
@@ -8,10 +8,31 @@ github_path: docs/content/commands/npm-view.md
8
redirect_from:
9
- /cli-commands/npm-view
10
- /cli-commands/view
11
- - /cli-commands/view.html
11
+ - /cli-documentation/cli-commands/npm-view
12
+ - /cli-documentation/cli-commands/view
13
+ - /cli-documentation/commands/npm-view
14
+ - /cli-documentation/commands/view
15
+ - /cli-documentation/npm-view
16
+ - /cli-documentation/v8/cli-commands/npm-view
17
+ - /cli-documentation/v8/cli-commands/view
18
+ - /cli-documentation/v8/commands/npm-view
19
+ - /cli-documentation/v8/commands/view
20
+ - /cli-documentation/v8/npm-view
21
+ - /cli-documentation/v8/view
22
+ - /cli-documentation/view
23
+ - /cli/cli-commands/npm-view
24
+ - /cli/cli-commands/view
25
+ - /cli/commands/npm-view
26
- /cli/commands/view
27
+ - /cli/npm-view
28
+ - /cli/v8/cli-commands/npm-view
29
+ - /cli/v8/cli-commands/view
30
+ - /cli/v8/commands/view
31
+ - /cli/v8/npm-view
32
+ - /cli/v8/view
33
- /cli/view
14
- - /cli/view.html
34
+ - /commands/npm-view
35
+ - /commands/view
36
---
37
38
### Synopsis
content/cli/v8/commands/npm-whoami.md
+23
-2
@@ -8,10 +8,31 @@ github_path: docs/content/commands/npm-whoami.md
8
redirect_from:
9
- /cli-commands/npm-whoami
10
- /cli-commands/whoami
11
- - /cli-commands/whoami.html
11
+ - /cli-documentation/cli-commands/npm-whoami
12
+ - /cli-documentation/cli-commands/whoami
13
+ - /cli-documentation/commands/npm-whoami
14
+ - /cli-documentation/commands/whoami
15
+ - /cli-documentation/npm-whoami
16
+ - /cli-documentation/v8/cli-commands/npm-whoami
17
+ - /cli-documentation/v8/cli-commands/whoami
18
+ - /cli-documentation/v8/commands/npm-whoami
19
+ - /cli-documentation/v8/commands/whoami
20
+ - /cli-documentation/v8/npm-whoami
21
+ - /cli-documentation/v8/whoami
22
+ - /cli-documentation/whoami
23
+ - /cli/cli-commands/npm-whoami
24
+ - /cli/cli-commands/whoami
25
+ - /cli/commands/npm-whoami
26
- /cli/commands/whoami
27
+ - /cli/npm-whoami
28
+ - /cli/v8/cli-commands/npm-whoami
29
+ - /cli/v8/cli-commands/whoami
30
+ - /cli/v8/commands/whoami
31
+ - /cli/v8/npm-whoami
32
+ - /cli/v8/whoami
33
- /cli/whoami
14
- - /cli/whoami.html
34
+ - /commands/npm-whoami
35
+ - /commands/whoami
36
---
37
38
### Synopsis
content/cli/v8/commands/npm.md
+10
-2
@@ -7,10 +7,18 @@ github_branch: v8
7
github_path: docs/content/commands/npm.md
8
redirect_from:
9
- /cli-commands/npm
10
- - /cli-commands/npm.html
10
+ - /cli-documentation/cli-commands/npm
11
+ - /cli-documentation/commands/npm
12
+ - /cli-documentation/npm
13
+ - /cli-documentation/v8/cli-commands/npm
14
+ - /cli-documentation/v8/commands/npm
15
+ - /cli-documentation/v8/npm
16
+ - /cli/cli-commands/npm
17
- /cli/commands/npm
18
- /cli/npm
13
- - /cli/npm.html
19
+ - /cli/v8/cli-commands/npm
20
+ - /cli/v8/npm
21
+ - /commands/npm
22
---
23
24
### Synopsis
content/cli/v8/commands/npx.md
+14
@@ -5,6 +5,20 @@ description: Run a command from a local or remote npm package
5
github_repo: npm/cli
6
github_branch: v8
7
github_path: docs/content/commands/npx.md
8
+redirect_from:
9
+ - /cli-commands/npx
10
+ - /cli-documentation/cli-commands/npx
11
+ - /cli-documentation/commands/npx
12
+ - /cli-documentation/npx
13
+ - /cli-documentation/v8/cli-commands/npx
14
+ - /cli-documentation/v8/commands/npx
15
+ - /cli-documentation/v8/npx
16
+ - /cli/cli-commands/npx
17
+ - /cli/commands/npx
18
+ - /cli/npx
19
+ - /cli/v8/cli-commands/npx
20
+ - /cli/v8/npx
21
+ - /commands/npx
22
---
23
24
### Synopsis
content/cli/v8/configuring-npm/folders.md
+7
-2
@@ -6,10 +6,15 @@ github_repo: npm/cli
6
github_branch: v8
7
github_path: docs/content/configuring-npm/folders.md
8
redirect_from:
9
+ - /cli-documentation/configuring-npm/folders
10
+ - /cli-documentation/files/folders
11
+ - /cli-documentation/v8/configuring-npm/folders
12
+ - /cli-documentation/v8/files/folders
13
+ - /cli/configuring-npm/folders
14
+ - /cli/files/folders
15
+ - /cli/v8/files/folders
16
- /configuring-npm/folders
10
- - /configuring-npm/folders.html
17
- /files/folders
12
- - /files/folders.html
18
---
19
20
### Description
content/cli/v8/configuring-npm/index.mdx
+15
@@ -5,9 +5,24 @@ github_branch: v8
5
github_path: docs/nav.yml
6
redirect_from:
7
- /cli-documentation/configuring-npm
8
+ - /cli-documentation/configuring-npm/index
9
- /cli-documentation/files
10
+ - /cli-documentation/files/index
11
+ - /cli-documentation/v8/configuring-npm
12
+ - /cli-documentation/v8/configuring-npm/index
13
+ - /cli-documentation/v8/files
14
+ - /cli-documentation/v8/files/index
15
- /cli/configuring-npm
16
+ - /cli/configuring-npm/index
17
+ - /cli/files
18
+ - /cli/files/index
19
+ - /cli/v8/configuring-npm/index
20
+ - /cli/v8/files
21
+ - /cli/v8/files/index
22
- /configuring-npm
23
+ - /configuring-npm/index
24
+ - /files
25
+ - /files/index
26
---
27
28
<Index depth="1" />
content/cli/v8/configuring-npm/install.md
+8
-1
@@ -6,8 +6,15 @@ github_repo: npm/cli
6
github_branch: v8
7
github_path: docs/content/configuring-npm/install.md
8
redirect_from:
9
+ - /cli-documentation/configuring-npm/install
10
+ - /cli-documentation/files/install
11
+ - /cli-documentation/v8/configuring-npm/install
12
+ - /cli-documentation/v8/files/install
13
+ - /cli/configuring-npm/install
14
+ - /cli/files/install
15
+ - /cli/v8/files/install
16
- /configuring-npm/install
10
- - /configuring-npm/install.html
17
+ - /files/install
18
---
19
20
### Description
content/cli/v8/configuring-npm/npm-shrinkwrap-json.md
+18
-1
@@ -6,8 +6,25 @@ github_repo: npm/cli
6
github_branch: v8
7
github_path: docs/content/configuring-npm/npm-shrinkwrap-json.md
8
redirect_from:
9
+ - /cli-documentation/configuring-npm/npm-shrinkwrap-json
10
+ - /cli-documentation/configuring-npm/npm-shrinkwrap.json
11
+ - /cli-documentation/files/npm-shrinkwrap-json
12
+ - /cli-documentation/files/npm-shrinkwrap.json
13
+ - /cli-documentation/v8/configuring-npm/npm-shrinkwrap-json
14
+ - /cli-documentation/v8/configuring-npm/npm-shrinkwrap.json
15
+ - /cli-documentation/v8/files/npm-shrinkwrap-json
16
+ - /cli-documentation/v8/files/npm-shrinkwrap.json
17
+ - /cli/configuring-npm/npm-shrinkwrap-json
18
+ - /cli/configuring-npm/npm-shrinkwrap.json
19
+ - /cli/files/npm-shrinkwrap-json
20
+ - /cli/files/npm-shrinkwrap.json
21
+ - /cli/v8/configuring-npm/npm-shrinkwrap.json
22
+ - /cli/v8/files/npm-shrinkwrap-json
23
+ - /cli/v8/files/npm-shrinkwrap.json
24
- /configuring-npm/npm-shrinkwrap-json
10
- - /configuring-npm/npm-shrinkwrap-json.html
25
+ - /configuring-npm/npm-shrinkwrap.json
26
+ - /files/npm-shrinkwrap-json
27
+ - /files/npm-shrinkwrap.json
28
---
29
30
### Description
content/cli/v8/configuring-npm/npmrc.md
+6
-2
@@ -6,11 +6,15 @@ github_repo: npm/cli
6
github_branch: v8
7
github_path: docs/content/configuring-npm/npmrc.md
8
redirect_from:
9
+ - /cli-documentation/configuring-npm/npmrc
10
- /cli-documentation/files/npmrc
11
+ - /cli-documentation/v8/configuring-npm/npmrc
12
+ - /cli-documentation/v8/files/npmrc
13
+ - /cli/configuring-npm/npmrc
14
+ - /cli/files/npmrc
15
+ - /cli/v8/files/npmrc
16
- /configuring-npm/npmrc
11
- - /configuring-npm/npmrc.html
17
- /files/npmrc
13
- - /files/npmrc.html
18
---
19
20
### Description
content/cli/v8/configuring-npm/package-json.md
+16
-3
@@ -6,12 +6,25 @@ github_repo: npm/cli
6
github_branch: v8
7
github_path: docs/content/configuring-npm/package-json.md
8
redirect_from:
9
+ - /cli-documentation/configuring-npm/package-json
10
+ - /cli-documentation/configuring-npm/package.json
11
+ - /cli-documentation/files/package-json
12
+ - /cli-documentation/files/package.json
13
+ - /cli-documentation/v8/configuring-npm/package-json
14
+ - /cli-documentation/v8/configuring-npm/package.json
15
+ - /cli-documentation/v8/files/package-json
16
+ - /cli-documentation/v8/files/package.json
17
+ - /cli/configuring-npm/package-json
18
+ - /cli/configuring-npm/package.json
19
+ - /cli/files/package-json
20
+ - /cli/files/package.json
21
+ - /cli/v8/configuring-npm/package.json
22
+ - /cli/v8/files/package-json
23
+ - /cli/v8/files/package.json
24
- /configuring-npm/package-json
10
- - /configuring-npm/package-json.html
25
- /configuring-npm/package.json
12
- - /creating-a-packge-json-file
26
+ - /files/package-json
27
- /files/package.json
14
- - /files/package.json.html
28
---
29
30
### Description
content/cli/v8/configuring-npm/package-lock-json.md
+17
-2
@@ -6,10 +6,25 @@ github_repo: npm/cli
6
github_branch: v8
7
github_path: docs/content/configuring-npm/package-lock-json.md
8
redirect_from:
9
+ - /cli-documentation/configuring-npm/package-lock-json
10
+ - /cli-documentation/configuring-npm/package-lock.json
11
+ - /cli-documentation/files/package-lock-json
12
+ - /cli-documentation/files/package-lock.json
13
+ - /cli-documentation/v8/configuring-npm/package-lock-json
14
+ - /cli-documentation/v8/configuring-npm/package-lock.json
15
+ - /cli-documentation/v8/files/package-lock-json
16
+ - /cli-documentation/v8/files/package-lock.json
17
+ - /cli/configuring-npm/package-lock-json
18
+ - /cli/configuring-npm/package-lock.json
19
+ - /cli/files/package-lock-json
20
+ - /cli/files/package-lock.json
21
+ - /cli/v8/configuring-npm/package-lock.json
22
+ - /cli/v8/files/package-lock-json
23
+ - /cli/v8/files/package-lock.json
24
- /configuring-npm/package-lock-json
10
- - /configuring-npm/package-lock-json.html
25
+ - /configuring-npm/package-lock.json
26
+ - /files/package-lock-json
27
- /files/package-lock.json
12
- - /files/package-lock.json.html
28
---
29
30
### Description
content/cli/v8/index.mdx
+5
@@ -6,6 +6,11 @@ github_path: docs/nav.yml
6
redirect_from:
7
- /cli
8
- /cli-documentation
9
+ - /cli-documentation/index
10
+ - /cli-documentation/v8
11
+ - /cli-documentation/v8/index
12
+ - /cli/index
13
+ - /cli/v8/index
14
---
15
16
<Index depth="1" />
content/cli/v8/using-npm/config.md
+7
-2
@@ -6,10 +6,15 @@ github_repo: npm/cli
6
github_branch: v8
7
github_path: docs/content/using-npm/config.md
8
redirect_from:
9
+ - /cli-documentation/misc/config
10
+ - /cli-documentation/using-npm/config
11
+ - /cli-documentation/v8/misc/config
12
+ - /cli-documentation/v8/using-npm/config
13
+ - /cli/misc/config
14
+ - /cli/using-npm/config
15
+ - /cli/v8/misc/config
16
- /misc/config
10
- - /misc/config.html
17
- /using-npm/config
12
- - /using-npm/config.html
18
---
19
20
### Description
content/cli/v8/using-npm/dependency-selectors.md
+7
-2
@@ -6,10 +6,15 @@ github_repo: npm/cli
6
github_branch: v8
7
github_path: docs/content/using-npm/dependency-selectors.md
8
redirect_from:
9
+ - /cli-documentation/misc/dependency-selectors
10
+ - /cli-documentation/using-npm/dependency-selectors
11
+ - /cli-documentation/v8/misc/dependency-selectors
12
+ - /cli-documentation/v8/using-npm/dependency-selectors
13
+ - /cli/misc/dependency-selectors
14
+ - /cli/using-npm/dependency-selectors
15
+ - /cli/v8/misc/dependency-selectors
16
- /misc/dependency-selectors
10
- - /misc/dependency-selectors.html
17
- /using-npm/dependency-selectors
12
- - /using-npm/dependency-selectors.html
18
---
19
20
### Description
content/cli/v8/using-npm/developers.md
+7
-2
@@ -6,10 +6,15 @@ github_repo: npm/cli
6
github_branch: v8
7
github_path: docs/content/using-npm/developers.md
8
redirect_from:
9
+ - /cli-documentation/misc/developers
10
+ - /cli-documentation/using-npm/developers
11
+ - /cli-documentation/v8/misc/developers
12
+ - /cli-documentation/v8/using-npm/developers
13
+ - /cli/misc/developers
14
+ - /cli/using-npm/developers
15
+ - /cli/v8/misc/developers
16
- /misc/developers
10
- - /misc/developers.html
17
- /using-npm/developers
12
- - /using-npm/developers.html
18
---
19
20
### Description
content/cli/v8/using-npm/index.mdx
+15
-1
@@ -5,10 +5,24 @@ github_branch: v8
5
github_path: docs/nav.yml
6
redirect_from:
7
- /cli-documentation/misc
8
+ - /cli-documentation/misc/index
9
- /cli-documentation/using-npm
10
+ - /cli-documentation/using-npm/index
11
+ - /cli-documentation/v8/misc
12
+ - /cli-documentation/v8/misc/index
13
+ - /cli-documentation/v8/using-npm
14
+ - /cli-documentation/v8/using-npm/index
15
+ - /cli/misc
16
+ - /cli/misc/index
17
- /cli/using-npm
10
- - /misc/index.html
18
+ - /cli/using-npm/index
19
+ - /cli/v8/misc
20
+ - /cli/v8/misc/index
21
+ - /cli/v8/using-npm/index
22
+ - /misc
23
+ - /misc/index
24
- /using-npm
25
+ - /using-npm/index
26
---
27
28
<Index depth="1" />
content/cli/v8/using-npm/logging.md
+7
-2
@@ -6,10 +6,15 @@ github_repo: npm/cli
6
github_branch: v8
7
github_path: docs/content/using-npm/logging.md
8
redirect_from:
9
+ - /cli-documentation/misc/logging
10
+ - /cli-documentation/using-npm/logging
11
+ - /cli-documentation/v8/misc/logging
12
+ - /cli-documentation/v8/using-npm/logging
13
+ - /cli/misc/logging
14
+ - /cli/using-npm/logging
15
+ - /cli/v8/misc/logging
16
- /misc/logging
10
- - /misc/logging.html
17
- /using-npm/logging
12
- - /using-npm/logging.html
18
---
19
20
### Description
content/cli/v8/using-npm/orgs.md
+7
-2
@@ -6,10 +6,15 @@ github_repo: npm/cli
6
github_branch: v8
7
github_path: docs/content/using-npm/orgs.md
8
redirect_from:
9
+ - /cli-documentation/misc/orgs
10
+ - /cli-documentation/using-npm/orgs
11
+ - /cli-documentation/v8/misc/orgs
12
+ - /cli-documentation/v8/using-npm/orgs
13
+ - /cli/misc/orgs
14
+ - /cli/using-npm/orgs
15
+ - /cli/v8/misc/orgs
16
- /misc/orgs
10
- - /misc/orgs.html
17
- /using-npm/orgs
12
- - /using-npm/orgs.html
18
---
19
20
### Description
content/cli/v8/using-npm/package-spec.md
+7
-2
@@ -6,10 +6,15 @@ github_repo: npm/cli
6
github_branch: v8
7
github_path: docs/content/using-npm/package-spec.md
8
redirect_from:
9
+ - /cli-documentation/misc/package-spec
10
+ - /cli-documentation/using-npm/package-spec
11
+ - /cli-documentation/v8/misc/package-spec
12
+ - /cli-documentation/v8/using-npm/package-spec
13
+ - /cli/misc/package-spec
14
+ - /cli/using-npm/package-spec
15
+ - /cli/v8/misc/package-spec
16
- /misc/package-spec
10
- - /misc/package-spec.html
17
- /using-npm/package-spec
12
- - /using-npm/package-spec.html
18
---
19
20
### Description
content/cli/v8/using-npm/registry.md
+7
-2
@@ -6,10 +6,15 @@ github_repo: npm/cli
6
github_branch: v8
7
github_path: docs/content/using-npm/registry.md
8
redirect_from:
9
+ - /cli-documentation/misc/registry
10
+ - /cli-documentation/using-npm/registry
11
+ - /cli-documentation/v8/misc/registry
12
+ - /cli-documentation/v8/using-npm/registry
13
+ - /cli/misc/registry
14
+ - /cli/using-npm/registry
15
+ - /cli/v8/misc/registry
16
- /misc/registry
10
- - /misc/registry.html
17
- /using-npm/registry
12
- - /using-npm/registry.html
18
---
19
20
### Description
content/cli/v8/using-npm/removal.md
+16
-3
@@ -6,12 +6,25 @@ github_repo: npm/cli
6
github_branch: v8
7
github_path: docs/content/using-npm/removal.md
8
redirect_from:
9
+ - /cli-documentation/misc/removal
10
+ - /cli-documentation/misc/removing-npm
11
+ - /cli-documentation/using-npm/removal
12
+ - /cli-documentation/using-npm/removing-npm
13
+ - /cli-documentation/v8/misc/removal
14
+ - /cli-documentation/v8/misc/removing-npm
15
+ - /cli-documentation/v8/using-npm/removal
16
+ - /cli-documentation/v8/using-npm/removing-npm
17
+ - /cli/misc/removal
18
+ - /cli/misc/removing-npm
19
+ - /cli/using-npm/removal
20
+ - /cli/using-npm/removing-npm
21
+ - /cli/v8/misc/removal
22
+ - /cli/v8/misc/removing-npm
23
+ - /cli/v8/using-npm/removing-npm
24
- /misc/removal
10
- - /misc/removal.html
25
- /misc/removing-npm
12
- - /misc/removing-npm.html
26
- /using-npm/removal
14
- - /using-npm/removal.html
27
+ - /using-npm/removing-npm
28
---
29
30
### Synopsis
content/cli/v8/using-npm/scope.md
+16
-2
@@ -6,11 +6,25 @@ github_repo: npm/cli
6
github_branch: v8
7
github_path: docs/content/using-npm/scope.md
8
redirect_from:
9
+ - /cli-documentation/misc/npm-scope
10
+ - /cli-documentation/misc/scope
11
+ - /cli-documentation/using-npm/npm-scope
12
+ - /cli-documentation/using-npm/scope
13
+ - /cli-documentation/v8/misc/npm-scope
14
+ - /cli-documentation/v8/misc/scope
15
+ - /cli-documentation/v8/using-npm/npm-scope
16
+ - /cli-documentation/v8/using-npm/scope
17
+ - /cli/misc/npm-scope
18
+ - /cli/misc/scope
19
+ - /cli/using-npm/npm-scope
20
+ - /cli/using-npm/scope
21
+ - /cli/v8/misc/npm-scope
22
+ - /cli/v8/misc/scope
23
+ - /cli/v8/using-npm/npm-scope
24
+ - /misc/npm-scope
25
- /misc/scope
10
- - /misc/scope.html
26
- /using-npm/npm-scope
27
- /using-npm/scope
13
- - /using-npm/scope.html
28
---
29
30
### Description
content/cli/v8/using-npm/scripts.md
+7
-2
@@ -6,10 +6,15 @@ github_repo: npm/cli
6
github_branch: v8
7
github_path: docs/content/using-npm/scripts.md
8
redirect_from:
9
+ - /cli-documentation/misc/scripts
10
+ - /cli-documentation/using-npm/scripts
11
+ - /cli-documentation/v8/misc/scripts
12
+ - /cli-documentation/v8/using-npm/scripts
13
+ - /cli/misc/scripts
14
+ - /cli/using-npm/scripts
15
+ - /cli/v8/misc/scripts
16
- /misc/scripts
10
- - /misc/scripts.html
17
- /using-npm/scripts
12
- - /using-npm/scripts.html
18
---
19
20
### Description
content/cli/v8/using-npm/workspaces.md
+7
-2
@@ -6,10 +6,15 @@ github_repo: npm/cli
6
github_branch: v8
7
github_path: docs/content/using-npm/workspaces.md
8
redirect_from:
9
+ - /cli-documentation/misc/workspaces
10
+ - /cli-documentation/using-npm/workspaces
11
+ - /cli-documentation/v8/misc/workspaces
12
+ - /cli-documentation/v8/using-npm/workspaces
13
+ - /cli/misc/workspaces
14
+ - /cli/using-npm/workspaces
15
+ - /cli/v8/misc/workspaces
16
- /misc/workspaces
10
- - /misc/workspaces.html
17
- /using-npm/workspaces
12
- - /using-npm/workspaces.html
18
---
19
20
### Description
theme/gatsby-node.js
+9
-1
@@ -29,7 +29,6 @@ exports.createSchemaCustomization = ({actions: {createTypes}}) => {
29
exports.createPages = async ({graphql, actions}, themeOptions) => {
30
const repo = themeOptions.repo ? themeOptions.repo : { url: getPkgRepo(readPkgUp.sync().package).browse() };
31
32
-
32
const {data} = await graphql(`
33
{
34
allMdx {
@@ -106,6 +105,15 @@ exports.createPages = async ({graphql, actions}, themeOptions) => {
105
isPermanent: true,
106
redirectInBrowser: true
107
})
108
+
109
+ if (pagePath.startsWith('cli/') && !from.endsWith('index')) {
110
+ actions.createRedirect({
111
+ fromPath: `${from}.html`,
112
+ toPath: '/' + pagePath,
113
+ isPermanent: true,
114
+ redirectInBrowser: true
115
+ })
116
+ }
117
})
118
}
119
}),