Skip to content

Commit b8c1576

Browse files
committed
chore(docs): fix links on markdowns
chore(docs): fix styling issues on man and html docs chore(docs): fix absolute links on cli docs
1 parent 3471d52 commit b8c1576

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

83 files changed

+259
-203
lines changed

docs/content/cli-commands/npm-access.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: npm-access
44
description: Set access level on published packages
55
---
66

7-
# npm-access
7+
# npm-access(1)
88

99
## Set access level on published packages
1010

docs/content/cli-commands/npm-adduser.md

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: npm-adduser
44
description: Set access level on published packages
55
---
66

7-
# npm-adduser
7+
# npm-adduser(1)
88

99
## Add a registry user account
1010

@@ -20,7 +20,7 @@ aliases: login, add-user
2020

2121
Create or verify a user named `<username>` in the specified registry, and
2222
save the credentials to the `.npmrc` file. If no registry is specified,
23-
the default registry will be used (see [`npm-config`](npm-config)).
23+
the default registry will be used (see [`config`](/using-npm/config)).
2424

2525
The username, password, and email are read in from prompts.
2626

@@ -43,14 +43,14 @@ Default: https://registry.npmjs.org/
4343

4444
The base URL of the npm package registry. If `scope` is also specified,
4545
this registry will only be used for packages with that scope. `scope` defaults
46-
to the scope of the project directory you're currently in, if any. See [`npm-scope`](/docs/using-npm/scope).
46+
to the scope of the project directory you're currently in, if any. See [`scope`](/using-npm/scope).
4747

4848
#### scope
4949

5050
Default: none
5151

5252
If specified, the user and login credentials given will be associated
53-
with the specified scope. See [`npm-scope`](/docs/using-npm/scope). You can use both at the same time,
53+
with the specified scope. See [`scope`](/using-npm/scope). You can use both at the same time,
5454
e.g.
5555

5656
```bash
@@ -75,9 +75,7 @@ registries. Can be used with `--registry` and / or `--scope`, e.g.
7575
This will ensure that all requests to that registry (including for tarballs)
7676
include an authorization header. This setting may be necessary for use with
7777
private registries where metadata and package tarballs are stored on hosts with
78-
different hostnames. See `always-auth` in [`npm-config`](/docs/using-npm/config) for more details on
79-
always-auth. Registry-specific configuration of `always-auth` takes precedence
80-
over any global configuration.
78+
different hostnames. See `always-auth` in [`config`](/using-npm/config) for more details on always-auth. Registry-specific configuration of `always-auth` takes precedence over any global configuration.
8179

8280
#### auth-type
8381

docs/content/cli-commands/npm-audit.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: npm-audit
44
description: Run a security audit
55
---
66

7-
# npm-audit
7+
# npm-audit(1)
88

99
## Run a security audit
1010

docs/content/cli-commands/npm-bin.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: npm-bin
44
description: Display npm bin folder
55
---
66

7-
# npm-bin
7+
# npm-bin(1)
88

99
## Display npm bin folder
1010

docs/content/cli-commands/npm-bugs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: npm-bugs
44
description: Bugs for a package in a web browser maybe
55
---
66

7-
# npm-bugs
7+
# npm-bugs(1)
88

99
## Bugs for a package in a web browser maybe
1010

docs/content/cli-commands/npm-build.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: npm-build
44
description: Build a package
55
---
66

7-
# npm-build
7+
# npm-build(1)
88

99
## Build a package
1010

docs/content/cli-commands/npm-bundle.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: npm-bundle
44
description: REMOVED
55
---
66

7-
# npm-bundle
7+
# npm-bundle(1)
88

99
## REMOVED
1010

docs/content/cli-commands/npm-cache.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: npm-cache
44
description: Manipulates packages cache
55
---
66

7-
# npm-cache
7+
# npm-cache(1)
88

99
## Manipulates packages cache
1010

docs/content/cli-commands/npm-ci.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: npm-ci
44
description: Install a project with a clean slate
55
---
66

7-
# npm-ci
7+
# npm-ci(1)
88

99
## Install a project with a clean slate
1010

@@ -45,7 +45,7 @@ cache:
4545

4646
### Description
4747

48-
This command is similar to [`npm-install`](npm-install), except it's meant to be used in
48+
This command is similar to [`npm install`](/cli-commands/npm-install), except it's meant to be used in
4949
automated environments such as test platforms, continuous integration, and
5050
deployment -- or any situation where you want to make sure you're doing a clean
5151
install of your dependencies. It can be significantly faster than a regular npm

docs/content/cli-commands/npm-completion.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: npm-completion
44
description: Tab Completion for npm
55
---
66

7-
# npm-completion
7+
# npm-completion(1)
88

99
## Tab Completion for npm
1010

docs/content/cli-commands/npm-config.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: npm-config
44
description: Manage the npm configuration files
55
---
66

7-
# npm-config
7+
# npm-config(1)
88

99
## Manage the npm configuration files
1010

@@ -26,9 +26,9 @@ aliases: c
2626
npm gets its config settings from the command line, environment
2727
variables, `npmrc` files, and in some cases, the `package.json` file.
2828

29-
See [npmrc](/docs/configuring-npm/npmrc) for more information about the npmrc files.
29+
See [npmrc](/configuring-npm/npmrc) for more information about the npmrc files.
3030

31-
See [config](/docs/using-npm/config) for a more thorough discussion of the mechanisms
31+
See [config](/using-npm/config) for a more thorough discussion of the mechanisms
3232
involved.
3333

3434
The `npm config` command can be used to update and edit the contents

docs/content/cli-commands/npm-dedupe.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: npm-dedupe
44
description: Reduce duplication
55
---
66

7-
# npm-dedupe
7+
# npm-dedupe(1)
88

99
## Reduce duplication
1010

@@ -32,7 +32,7 @@ a
3232
3333
```
3434

35-
In this case, `npm-dedupe` will transform the tree to:
35+
In this case, `npm dedupe` will transform the tree to:
3636

3737
```bash
3838
a

docs/content/cli-commands/npm-deprecate.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ section: cli-commands
33
title: npm-deprecate
44
description: Deprecate a version of a package
55
---
6-
# npm-deprecate
6+
# npm-deprecate(1)
77

88
## Deprecate a version of a package
99

docs/content/cli-commands/npm-dist-tag.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: npm-dist-tag
44
description: Modify package distribution tags
55
---
66

7-
# npm-dist-tag
7+
# npm-dist-tag(1)
88

99
## Modify package distribution tags
1010

docs/content/cli-commands/npm-docs.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,10 @@ title: npm-docs
44
description: Docs for a package in a web browser maybe
55
---
66

7-
# npm-docs
7+
# npm-docs(1)
88

99
## Docs for a package in a web browser maybe
1010

11-
1211
### Synopsis
1312

1413
```bash

docs/content/cli-commands/npm-doctor.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: npm-doctor
44
description: Check your environments
55
---
66

7-
# npm-doctor
7+
# npm-doctor(1)
88

99
## Check your environments
1010

docs/content/cli-commands/npm-edit.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: npm-edit
44
description: Edit an installed package
55
---
66

7-
# npm-edit
7+
# npm-edit(1)
88

99
## Edit an installed package
1010

docs/content/cli-commands/npm-explore.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ title: npm-explore
44
description: Browse an installed package
55
---
66

7-
# npm-explore
7+
# npm-explore(1)
88

9-
## description: Browse an installed package
9+
## Browse an installed package
1010

1111
### Synopsis
1212

docs/content/cli-commands/npm-fund.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: npm-fund
44
description: Retrieve funding information
55
---
66

7-
# npm-fund
7+
# npm-fund(1)
88

99
## Retrieve funding information
1010

@@ -53,8 +53,8 @@ Set it to `false` in order to use all-ansi output.
5353

5454
## See Also
5555

56-
* [npm-docs](/cli-commands/npm-docs)
57-
* [npm-config](/cli-commands/npm-config)
58-
* [npm-install](/cli-commands/npm-install)
59-
* [npm-ls](/cli-commands/npm-ls)
56+
* [npm docs](/cli-commands/npm-docs)
57+
* [npm config](/cli-commands/npm-config)
58+
* [npm install](/cli-commands/npm-install)
59+
* [npm ls](/cli-commands/npm-ls)
6060

docs/content/cli-commands/npm-help-search.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: npm-help-search
44
description: Search npm help documentation
55
---
66

7-
# npm-help-search
7+
# npm-help-search(1)
88

99
## Search npm help documentation
1010

docs/content/cli-commands/npm-help.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: npm-help
44
description: Get help on npm
55
---
66

7-
# npm-help
7+
# npm-help(1)
88

99
## Get help on npm
1010

docs/content/cli-commands/npm-hook.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: npm-hook
44
description: Manage registry hooks
55
---
66

7-
# npm-hook
7+
# npm-hook(1)
88

99
## Manage registry hooks
1010

@@ -56,8 +56,7 @@ $ npm hook rm id-deadbeef
5656

5757
### Description
5858

59-
Allows you to manage [npm
60-
hooks](https://blog.npmjs.org/post/145260155635/introducing-hooks-get-notifications-of-npm),
59+
Allows you to manage [npm hooks](https://blog.npmjs.org/post/145260155635/introducing-hooks-get-notifications-of-npm),
6160
including adding, removing, listing, and updating.
6261

6362
Hooks allow you to configure URL endpoints that will be notified whenever a

docs/content/cli-commands/npm-init.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: npm-init
44
description: create a package.json file
55
---
66

7-
# npm-init
7+
# npm-init(1)
88

99
## create a package.json file
1010

docs/content/cli-commands/npm-install-ci-test.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: npm-install-ci-test
44
description: Install a project with a clean slate and run tests
55
---
66

7-
# npm install-ci-test
7+
# npm install-ci-test(1)
88

99
## Install a project with a clean slate and run tests
1010

docs/content/cli-commands/npm-install-test.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: npm-install-test
44
description: Install package(s) and run tests
55
---
66

7-
# npm install-test
7+
# npm install-test(1)
88

99
## Install package(s) and run tests
1010

0 commit comments

Comments
 (0)