Skip to content

Commit 48ee8d0

Browse files
jtojnardarcyclarke
authored andcommitted
docs: Fix RFC links in changelog
Credit: @jtojnar Close: #2096 Reviewed-by: @ruyadorno
1 parent 52d32d1 commit 48ee8d0

1 file changed

Lines changed: 11 additions & 11 deletions

File tree

CHANGELOG.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -602,7 +602,7 @@
602602
sources ([@ruyadorno](https://github.com/ruyadorno))
603603
* [`3a63ecb6f`](https://github.com/npm/cli/commit/3a63ecb6f6a0b235660f73a3ffa329b1f131b0c3)
604604
[#1718](https://github.com/npm/cli/pull/1718)
605-
[RFC-0029](https://github.com/npm/rfcs/blob/latest/accepted/0029-add-ability-to-skip-hooks.md)
605+
[RFC-0029](https://github.com/npm/rfcs/blob/latest/implemented/0029-add-ability-to-skip-hooks.md)
606606
add ability to skip pre/post hooks to `npm run-script` by using
607607
`--ignore-scripts` ([@ruyadorno](https://github.com/ruyadorno))
608608

@@ -829,7 +829,7 @@ Now on to the list of **BREAKING CHANGES**!
829829
### Programmatic Usage
830830

831831
- [RFC
832-
20](https://github.com/npm/rfcs/blob/latest/accepted/0020-npm-option-handling.md)
832+
20](https://github.com/npm/rfcs/blob/latest/implemented/0020-npm-option-handling.md)
833833
The CLI and its dependencies no longer use the `figgy-pudding` library
834834
for configs. Configuration is done using a flat plain old JavaScript
835835
object.
@@ -859,7 +859,7 @@ The environment for lifecycle scripts (eg, build scripts, `npm test`, etc.)
859859
has changed.
860860

861861
- [RFC
862-
21](https://github.com/npm/rfcs/blob/latest/accepted/0021-reduce-lifecycle-script-environment.md)
862+
21](https://github.com/npm/rfcs/blob/latest/implemented/0021-reduce-lifecycle-script-environment.md)
863863
Environment no longer includes `npm_package_*` fields, or `npm_config_*`
864864
fields for default configs. `npm_package_json`, `npm_package_integrity`,
865865
`npm_package_resolved`, and `npm_command` environment variables added.
@@ -868,13 +868,13 @@ has changed.
868868
release](https://github.com/npm/rfcs/pull/183))
869869

870870
- [RFC
871-
22](https://github.com/npm/rfcs/blob/latest/accepted/0022-quieter-install-scripts.md)
871+
22](https://github.com/npm/rfcs/blob/latest/implemented/0022-quieter-install-scripts.md)
872872
Scripts run during the normal course of installation are silenced unless
873873
they exit in error (ie, with a signal or non-zero exit status code), and
874874
are for a non-optional dependency.
875875

876876
- [RFC
877-
24](https://github.com/npm/rfcs/blob/latest/accepted/0024-npm-run-traverse-directory-tree.md)
877+
24](https://github.com/npm/rfcs/blob/latest/implemented/0024-npm-run-traverse-directory-tree.md)
878878
`PATH` environment variable includes all `node_modules/.bin` folders,
879879
even if found outside of an existing `node_modules` folder hierarchy.
880880

@@ -924,7 +924,7 @@ We do intend to continue supporting the `npx` that npm ships; just not the
924924
### Files On Disk
925925

926926
- [RFC
927-
13](https://github.com/npm/rfcs/blob/latest/accepted/0013-no-package-json-_fields.md)
927+
13](https://github.com/npm/rfcs/blob/latest/implemented/0013-no-package-json-_fields.md)
928928
Installed `package.json` files no longer are mutated to include extra
929929
metadata. (This extra metadata is stored in the lockfile.)
930930
- `package-lock.json` is updated to a newer format, using
@@ -940,7 +940,7 @@ These changes affect `install`, `ci`, `install-test`, `install-ci-test`,
940940
`update`, `prune`, `dedupe`, `uninstall`, `link`, and `audit fix`.
941941

942942
- [RFC
943-
25](https://github.com/npm/rfcs/blob/latest/accepted/0025-install-peer-deps.md)
943+
25](https://github.com/npm/rfcs/blob/latest/implemented/0025-install-peer-deps.md)
944944
`peerDependencies` are installed by default. This behavior can be
945945
disabled by setting the `legacy-peer-deps` configuration flag.
946946

@@ -951,7 +951,7 @@ These changes affect `install`, `ci`, `install-test`, `install-ci-test`,
951951
of correctness. Use the `--legacy-peer-deps` config flag if impacted.
952952

953953
- [RFC
954-
23](https://github.com/npm/rfcs/blob/latest/accepted/0023-acceptDependencies.md)
954+
23](https://github.com/npm/rfcs/blob/latest/implemented/0023-acceptDependencies.md)
955955
Support for `acceptDependencies` is added. This can result in dependency
956956
resolutions that previous versions of npm will incorrectly flag as invalid.
957957

@@ -973,23 +973,23 @@ These changes affect `install`, `ci`, `install-test`, `install-ci-test`,
973973
### Workspaces
974974

975975
- [RFC
976-
26](https://github.com/npm/rfcs/blob/latest/accepted/0026-workspaces.md)
976+
26](https://github.com/npm/rfcs/blob/latest/implemented/0026-workspaces.md)
977977
First phase of `workspaces` support is added. This changes npm's
978978
behavior when a root project's `package.json` file contains a
979979
`workspaces` field.
980980

981981
### `npm update`
982982

983983
- [RFC
984-
19](https://github.com/npm/rfcs/blob/latest/accepted/0019-remove-update-depth-option.md)
984+
19](https://github.com/npm/rfcs/blob/latest/implemented/0019-remove-update-depth-option.md)
985985
Update all dependencies when `npm update` is run without any arguments.
986986
As it is no longer relevant, `--depth` config flag removed from `npm
987987
update`.
988988

989989
### `npm outdated`
990990

991991
- [RFC
992-
27](https://github.com/npm/rfcs/blob/latest/accepted/0027-remove-depth-outdated.md)
992+
27](https://github.com/npm/rfcs/blob/latest/implemented/0027-remove-depth-outdated.md)
993993
Remove `--depth` config from `npm outdated`. Only top-level dependencies
994994
are shown, unless `--all` config option is set.
995995

0 commit comments

Comments
 (0)