Skip to content

Commit f0a372b

Browse files
authored
docs: replace references to the old repo or issue tracker (#5)
1 parent 4c32413 commit f0a372b

File tree

9 files changed

+43
-245
lines changed

9 files changed

+43
-245
lines changed

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,15 +59,15 @@ Collaborators who become inactive for 3 months or longer may have their collabor
5959
* Only answer questions when they know the answer, and provide a reference to the answer.
6060
* If collaborators aren't totally confident about their answer, please leave the issue and try another one.
6161
* If they've responded to an issue, it becomes their responsibility to see it to resolution.
62-
* Close issues if there's no response within a month.
6362
* Defer to fellow Collaborators & npm employees for answers (Again, please don't @ collaborators or npm employees, thank you!)
64-
* Make sure to search for [the troubleshooting doc](./TROUBLESHOOTING.md) and search on the issue tracker for similar issues before opening a new one.
63+
* Make sure to search [the troubleshooting posts on npm.community](https://npm.community/c/support/troubleshooting) and search the rest of the forum for similar topics.
6564

6665
### npm, Inc Employees
6766

6867
Folks who work at npm, Inc, who have a responsibility to ensure the stability and functionality of the tools npm offers.
6968

7069
#### Abilities
70+
7171
* Label/triage new issues
7272
* Respond to ongoing issues
7373
* Close resolved issues

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ you should [read this](https://docs.npmjs.com/misc/developers).
153153
When you find issues, please report them:
154154

155155
* web:
156-
<https://github.com/npm/npm/issues>
156+
<https://npm.community/c/bugs>
157157

158158
Be sure to include *all* of the output from the npm command that didn't work
159159
as expected. The `npm-debug.log` file is also helpful to provide.

TROUBLESHOOTING.md

Lines changed: 0 additions & 192 deletions
This file was deleted.

bin/npm-cli.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@
103103
break
104104
}
105105
}
106-
const changelog = `https://github.com/npm/npm/releases/tag/v${latest}`
106+
const changelog = `https://github.com/npm/cli/releases/tag/v${latest}`
107107
notifier.notify({
108108
message: `New ${type} version of ${pkg.name} available! ${
109109
useColor ? color.red(old) : old

doc/cli/npm-install.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ after packing it up into a tarball (b).
5454
With the `--production` flag (or when the `NODE_ENV` environment variable
5555
is set to `production`), npm will not install modules listed in
5656
`devDependencies`.
57-
57+
5858
> NOTE: The `--production` flag has no particular meaning when adding a
5959
dependency to a project.
6060

@@ -69,8 +69,8 @@ after packing it up into a tarball (b).
6969

7070
Install a package that is sitting on the filesystem. Note: if you just want
7171
to link a dev directory into your npm root, you can do this more easily by
72-
using `npm link`.
73-
72+
using `npm link`.
73+
7474
Tarball requirements:
7575
* The filename *must* use `.tar`, `.tar.gz`, or `.tgz` as
7676
the extension.
@@ -223,11 +223,11 @@ after packing it up into a tarball (b).
223223

224224
Examples:
225225

226-
npm install git+ssh://[email protected]:npm/npm.git#v1.0.27
227-
npm install git+ssh://[email protected]:npm/npm#semver:^5.0
228-
npm install git+https://[email protected]/npm/npm.git
229-
npm install git://github.com/npm/npm.git#v1.0.27
230-
GIT_SSH_COMMAND='ssh -i ~/.ssh/custom_ident' npm install git+ssh://[email protected]:npm/npm.git
226+
npm install git+ssh://[email protected]:npm/cli.git#v1.0.27
227+
npm install git+ssh://[email protected]:npm/cli#semver:^5.0
228+
npm install git+https://[email protected]/npm/cli.git
229+
npm install git://github.com/npm/cli.git#v1.0.27
230+
GIT_SSH_COMMAND='ssh -i ~/.ssh/custom_ident' npm install git+ssh://[email protected]:npm/cli.git
231231

232232
* `npm install <githubname>/<githubrepo>[#<commit-ish>]`:
233233
* `npm install github:<githubname>/<githubrepo>[#<commit-ish>]`:

doc/cli/npm.md

Lines changed: 15 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -53,10 +53,10 @@ See `npm-folders(5)` to learn about where npm puts stuff.
5353

5454
In particular, npm has two modes of operation:
5555

56-
* global mode:
56+
* global mode:
5757
npm installs packages into the install prefix at
5858
`prefix/lib/node_modules` and bins are installed in `prefix/bin`.
59-
* local mode:
59+
* local mode:
6060
npm installs packages into the current project directory, which
6161
defaults to the current working directory. Packages are installed to
6262
`./node_modules`, and bins are installed to `./node_modules/.bin`.
@@ -90,24 +90,24 @@ following help topics:
9090
npm is extremely configurable. It reads its configuration options from
9191
5 places.
9292

93-
* Command line switches:
93+
* Command line switches:
9494
Set a config with `--key val`. All keys take a value, even if they
9595
are booleans (the config parser doesn't know what the options are at
9696
the time of parsing). If no value is provided, then the option is set
9797
to boolean `true`.
98-
* Environment Variables:
98+
* Environment Variables:
9999
Set any config by prefixing the name in an environment variable with
100100
`npm_config_`. For example, `export npm_config_key=val`.
101-
* User Configs:
101+
* User Configs:
102102
The file at $HOME/.npmrc is an ini-formatted list of configs. If
103103
present, it is parsed. If the `userconfig` option is set in the cli
104104
or env, then that will be used instead.
105-
* Global Configs:
105+
* Global Configs:
106106
The file found at ../etc/npmrc (from the node executable, by default
107107
this resolves to /usr/local/etc/npmrc) will be parsed if it is found.
108108
If the `globalconfig` option is set in the cli, env, or user config,
109109
then that file is parsed instead.
110-
* Defaults:
110+
* Defaults:
111111
npm's default configuration options are defined in
112112
lib/utils/config-defs.js. These must not be changed.
113113

@@ -117,34 +117,24 @@ See `npm-config(7)` for much much more information.
117117

118118
Patches welcome!
119119

120-
* code:
121-
Read through `npm-coding-style(7)` if you plan to submit code.
122-
You don't have to agree with it, but you do have to follow it.
123-
* docs:
124-
If you find an error in the documentation, edit the appropriate markdown
125-
file in the "doc" folder. (Don't worry about generating the man page.)
126-
127-
Contributors are listed in npm's `package.json` file. You can view them
128-
easily by doing `npm view npm contributors`.
129-
130120
If you would like to contribute, but don't know what to work on, read
131121
the contributing guidelines and check the issues list.
132122

133-
* https://github.com/npm/npm/wiki/Contributing-Guidelines
134-
* <https://github.com/npm/npm/issues>
123+
* [CONTRIBUTING.md](https://github.com/npm/cli/blob/latest/CONTRIBUTING.md)
124+
* [Bug tracker](https://npm.community/c/bugs)
125+
* [Support tracker](https://npm.community/c/support)
135126

136127
## BUGS
137128

138129
When you find issues, please report them:
139130

140131
* web:
141-
<https://github.com/npm/npm/issues>
142-
143-
Be sure to include *all* of the output from the npm command that didn't work
144-
as expected. The `npm-debug.log` file is also helpful to provide.
132+
<https://npm.community/c/bugs>
145133

146-
You can also look for isaacs in #node.js on irc://irc.freenode.net. He
147-
will no doubt tell you to put the output in a gist or email.
134+
Be sure to follow the template and bug reporting guidelines. You can also ask
135+
for help in the [support forum](https://npm.community/c/support) if you're
136+
unsure if it's actually a bug or are having trouble coming up with a detailed
137+
reproduction to report.
148138

149139
## AUTHOR
150140

0 commit comments

Comments
 (0)