Skip to content

Commit b3635ab

Browse files
authored
Update site domains (#879)
Replaces `legacy.yarnpkg.com` with `classic.yarnpkg.com`, and `next.yarnpkg.com` with `yarnpkg.com`
1 parent 8e75329 commit b3635ab

File tree

26 files changed

+97
-97
lines changed

26 files changed

+97
-97
lines changed

Diff for: .github/ISSUE_TEMPLATE/bug-report.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ A clear and concise description of what the bug is.
1717

1818
The _minimal_ information needed to reproduce your issue (ideally a package.json with a single dep). Note that bugs without minimal reproductions might be closed.
1919

20-
IMPORTANT: We strongly prefer reproductions that use Sherlock. Please check our documentation for more information: https://next.yarnpkg.com/advanced/sherlock
20+
IMPORTANT: We strongly prefer reproductions that use Sherlock. Please check our documentation for more information: https://yarnpkg.com/advanced/sherlock
2121

2222
**Screenshots**
2323

Diff for: CHANGELOG.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Remember that a [migration guide](https://yarnpkg.com/advanced/migration) is ava
2828

2929
- The Yarn configuration has been revamped and *will not read the `.npmrc` files anymore.* This used to cause a lot of confusion as to where the configuration was coming from, so the logic is now very simple: Yarn will look in the current directory and all its ancestors for `.yarnrc.yml` files.
3030

31-
- Note that the configuration files are now called `.yarnrc.yml` and thus are expected to be valid YAML. The available settings are listed [here](https://next.yarnpkg.com/configuration/yarnrc).
31+
- Note that the configuration files are now called `.yarnrc.yml` and thus are expected to be valid YAML. The available settings are listed [here](https://yarnpkg.com/configuration/yarnrc).
3232

3333
- The lockfiles now generated should be compatible with Yaml, while staying compatible with old-style lockfiles. Old-style lockfiles will be automatically migrated, but that will require some round-trips to the registry to obtain more information that wasn't stored previously, so the first install will be slightly slower.
3434

@@ -38,7 +38,7 @@ Remember that a [migration guide](https://yarnpkg.com/advanced/migration) is ava
3838

3939
### Package manifests (`package.json`)
4040

41-
To see a comprehensive documentation about each possible field, please check our [documentation](https://next.yarnpkg.com/configuration/manifest).
41+
To see a comprehensive documentation about each possible field, please check our [documentation](https://yarnpkg.com/configuration/manifest).
4242

4343
- Two new fields are now supported in the `publishConfig` key of your manifests: the `main`, `bin`, and `module` fields will be used to replace the value of their respective top-level counterparts in the manifest shipped along with the generated file.
4444

Diff for: CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# Contributing
22

3-
Thanks for being here! Our contribution docs are hosted on [our website](https://next.yarnpkg.com/advanced/contributing). See you there! 😃
3+
Thanks for being here! Our contribution docs are hosted on [our website](https://yarnpkg.com/advanced/contributing). See you there! 😃

Diff for: README.md

+13-13
Original file line numberDiff line numberDiff line change
@@ -21,18 +21,18 @@ Yarn is a modern package manager split into various packages. Its novel architec
2121

2222
- Yarn supports plugins; adding a plugin is as simple as adding it into your repository
2323
- Yarn supports Node by default but isn't limited to it - plugins can add support for other languages
24-
- Yarn supports [workspaces](https://next.yarnpkg.com/features/workspaces) natively, and its CLI takes advantage of that
24+
- Yarn supports [workspaces](https://yarnpkg.com/features/workspaces) natively, and its CLI takes advantage of that
2525
- Yarn uses a portable shell to execute package scripts, guaranteeing they work the same way on Windows and Linux
2626
- Yarn is first and foremost a Node API that can be used programmatically (via [@yarnpkg/core](packages/yarnpkg-core))
2727
- Yarn is written in TypeScript, and is fully type checked
2828

2929
## Install
3030

31-
Consult the [dedicated page](https://next.yarnpkg.com/getting-started/install) for more details.
31+
Consult the [dedicated page](https://yarnpkg.com/getting-started/install) for more details.
3232

3333
## Documentation
3434

35-
The documentation is being reworked to contain an updated content and a refreshed design, and the most up-to-date version can be found on the repository GitHub pages: [next.yarnpkg.com](https://next.yarnpkg.com/)
35+
The documentation is being reworked to contain an updated content and a refreshed design, and the most up-to-date version can be found on the repository GitHub pages: [yarnpkg.com](https://yarnpkg.com/)
3636

3737
## Current status
3838

@@ -85,34 +85,34 @@ Note that no other command is needed! Given that our dependencies are checked-in
8585
Those plugins typically come bundled with Yarn. You don't need to do anything special to use them.
8686

8787
- [★ plugin-constraints](packages/plugin-constraints) adds support for `yarn constraints [--fix]`.
88-
- [★ plugin-dlx](packages/plugin-dlx) adds support for the [`yarn dlx`](https://next.yarnpkg.com/cli/dlx) command.
88+
- [★ plugin-dlx](packages/plugin-dlx) adds support for the [`yarn dlx`](https://yarnpkg.com/cli/dlx) command.
8989
- [★ plugin-essentials](packages/plugin-essentials) adds various commands deemed necessary for a package manager (add, remove, ...).
9090
- [★ plugin-file](packages/plugin-file) adds support for using the `file:` protocol within your dependencies.
9191
- [★ plugin-github](packages/plugin-github) adds support for using Github references as dependencies. [This plugin doesn't use git.](https://stackoverflow.com/a/13636954/880703)
9292
- [★ plugin-http](packages/plugin-http) adds support for using straight URL references as dependencies (tgz archives only).
93-
- [★ plugin-init](packages/plugin-init) adds support for the [`yarn init`](https://next.yarnpkg.com/cli/init) command.
93+
- [★ plugin-init](packages/plugin-init) adds support for the [`yarn init`](https://yarnpkg.com/cli/init) command.
9494
- [★ plugin-link](packages/plugin-link) adds support for using `link:` and `portal:` references as dependencies.
9595
- [★ plugin-npm](packages/plugin-npm) adds support for using [semver ranges](https://semver.org) as dependencies, resolving them to an NPM-like registry.
96-
- [★ plugin-npm-cli](packages/plugin-npm-cli) adds support for the NPM-specific commands ([`yarn npm login`](https://next.yarnpkg.com/cli/npm/login), [`yarn npm publish`](https://next.yarnpkg.com/cli/npm/publish), ...).
97-
- [★ plugin-pack](packages/plugin-pack) adds support for the [`yarn pack`](https://next.yarnpkg.com/cli/pack) command.
98-
- [★ plugin-pnp](packages/plugin-pnp) adds support for installing Javascript dependencies through the [Plug'n'Play](https://next.yarnpkg.com/features/pnp) specification.
96+
- [★ plugin-npm-cli](packages/plugin-npm-cli) adds support for the NPM-specific commands ([`yarn npm login`](https://yarnpkg.com/cli/npm/login), [`yarn npm publish`](https://yarnpkg.com/cli/npm/publish), ...).
97+
- [★ plugin-pack](packages/plugin-pack) adds support for the [`yarn pack`](https://yarnpkg.com/cli/pack) command.
98+
- [★ plugin-pnp](packages/plugin-pnp) adds support for installing Javascript dependencies through the [Plug'n'Play](https://yarnpkg.com/features/pnp) specification.
9999

100100
### Contrib plugins
101101

102102
Although developed on the same repository as Yarn itself, those plugins are optional and need to be explicitly installed through `yarn plugin import @yarnpkg/<plugin-name>`.
103103

104104
- [☆ plugin-exec](packages/plugin-exec) adds support for using the `exec:` protocol within your dependencies.
105-
- [☆ plugin-stage](packages/plugin-stage) adds support for the [`yarn stage`](https://next.yarnpkg.com/cli/stage) command.
105+
- [☆ plugin-stage](packages/plugin-stage) adds support for the [`yarn stage`](https://yarnpkg.com/cli/stage) command.
106106
- [☆ plugin-typescript](packages/plugin-typescript) improves the user experience when working with TypeScript.
107-
- [☆ plugin-workspace-tools](packages/plugin-workspace-tools) adds support for the [`yarn workspaces foreach`](https://next.yarnpkg.com/cli/workspaces/foreach) command.
107+
- [☆ plugin-workspace-tools](packages/plugin-workspace-tools) adds support for the [`yarn workspaces foreach`](https://yarnpkg.com/cli/workspaces/foreach) command.
108108

109109
### Third-party plugins
110110

111-
Plugins can be developed by third-party entities. To use them within your applications, just specify the full plugin URL when calling [`yarn plugin import`](https://next.yarnpkg.com/cli/plugin/import). Note that plugins aren't fetched from the npm registry at this time - they must be distributed as a single JavaScript file.
111+
Plugins can be developed by third-party entities. To use them within your applications, just specify the full plugin URL when calling [`yarn plugin import`](https://yarnpkg.com/cli/plugin/import). Note that plugins aren't fetched from the npm registry at this time - they must be distributed as a single JavaScript file.
112112

113113
### Creating a new plugin
114114

115-
To create your own plugin, please refer to the [documentation](https://next.yarnpkg.com/features/plugins).
115+
To create your own plugin, please refer to the [documentation](https://yarnpkg.com/features/plugins).
116116

117117
## Generic packages
118118

@@ -123,7 +123,7 @@ The following packages are generic and can be used in a variety of purposes (inc
123123
- [@yarnpkg/json-proxy](packages/yarnpkg-json-proxy) allows to temporarily convert any POD object to an immutable object.
124124
- [@yarnpkg/libzip](packages/yarnpkg-libzip) contains zlib+libzip bindings compiled to WebAssembly.
125125
- [@yarnpkg/parsers](packages/yarnpkg-parsers) can be used to parse the language used by [@yarnpkg/shell](packages/yarnpkg-shell).
126-
- [@yarnpkg/pnp](packages/yarnpkg-pnp) can be used to generate [Plug'n'Play](https://next.yarnpkg.com/features/pnp)-compatible hooks.
126+
- [@yarnpkg/pnp](packages/yarnpkg-pnp) can be used to generate [Plug'n'Play](https://yarnpkg.com/features/pnp)-compatible hooks.
127127
- [@yarnpkg/pnpify](packages/yarnpkg-pnpify) is a CLI tool to transparently add PnP support to various tools.
128128
- [@yarnpkg/shell](packages/yarnpkg-shell) is a portable bash-like shell interpreter.
129129

Diff for: docs/404.html

+10-10
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
<meta name=twitter:title content="Redirecting to new documentation site...">
3535
<meta name=twitter:description content="Fast, reliable, and secure dependency management.">
3636
<meta name=theme-color content=#2188b6>
37-
<script>window.location = "https://next.yarnpkg.com" + window.location.pathname.replace("/berry", "") + window.location.search + window.location.hash</script>
37+
<script>window.location = "https://yarnpkg.com" + window.location.pathname.replace("/berry", "") + window.location.search + window.location.hash</script>
3838
<style data-emotion-css=1rgujud>
3939
body {
4040
font-family: "Open Sans", sans-serif;
@@ -184,30 +184,30 @@
184184
<body><noscript>This app works best with JavaScript enabled.</noscript>
185185
<div>
186186
<div style=outline:none tabindex=-1 role=group>
187-
<div class="css-1iw4wyv e11px6xy0"><a href=https://next.yarnpkg.com
187+
<div class="css-1iw4wyv e11px6xy0"><a href=https://yarnpkg.com
188188
class="css-17lg5tj e11px6xy1"><span class="css-ol3iif e11px6xy2">Important:</span> This
189189
documentation covers the v2 onwards and is actively being worked on. Come help us!</a>
190190
<header class="css-1tbqck0 e11px6xy3">
191191
<div class="css-k008qs e11px6xy4"><a class="css-114nkxc e11px6xy5"
192-
href=https://next.yarnpkg.com/> <img alt=Yarn
192+
href=https://yarnpkg.com/> <img alt=Yarn
193193
src=data:image/svg+xml;base64,PHN2ZyBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgMTE1NC44IDUxOCI+PHN0eWxlPi5zdDB7ZmlsbDojMmM4ZWJifS5zdDF7ZmlsbDojZmZmfTwvc3R5bGU+PHBhdGggY2xhc3M9InN0MCIgZD0iTTcxOC42IDI1Ny44Yy04IDI3LjYtMjAuOCA0Ny42LTM1LjIgNjMuNlYxODFjMC05LjYtOC40LTE3LjYtMjEuNi0xNy42LTUuNiAwLTEwLjQgMi44LTEwLjQgNi44IDAgMi44IDEuNiA1LjIgMS42IDEyLjh2NjQuNGMtNC44IDI4LTE2LjggNTQtMzIuOCA1NC0xMS42IDAtMTguNC0xMS42LTE4LjQtMzMuMiAwLTMzLjYgNC40LTUxLjIgMTEuNi04MC44IDEuNi02IDEzLjItMjItNi40LTIyLTIxLjIgMC0xOC40IDgtMjEuMiAxNC44IDAgMC0xMy40IDQ3LjYtMTMuNCA5MCAwIDM0LjggMTQuNiA1Ny42IDQxLjQgNTcuNiAxNy4yIDAgMjkuNi0xMS42IDM5LjItMjcuNlYzNTFjLTI2LjQgMjMuMi00OS42IDQzLjYtNDkuNiA4NCAwIDI1LjYgMTYgNDYgMzguNCA0NiAyMC40IDAgNDEuNi0xNC44IDQxLjYtNTYuOFYzNTVjMjEuNi0xOC44IDQ0LjgtNDIuNCA1OC40LTg4LjguNC0xLjYuNC0zLjYuNC00IDAtNy42LTcuNi0xNi40LTE0LTE2LjQtNCAwLTcuMiAzLjYtOS42IDEyem0tNzYuOCAxOThjLTYuNCAwLTEwLjQtOS42LTEwLjQtMjIgMC0yNCA4LjgtMzkuMiAyMS42LTUyLjR2NDIuOGMwIDcuNiAxLjYgMzEuNi0xMS4yIDMxLjZ6Ii8+PHBhdGggY2xhc3M9InN0MCIgZD0iTTgzMy40IDMwMWMtOS42IDAtMTMuNi05LjYtMTMuNi0xOC40di02NmMwLTkuNi04LjQtMTcuNi0yMS42LTE3LjYtNS42IDAtMTAuNCAyLjgtMTAuNCA2LjggMCAyLjggMS42IDUuMiAxLjYgMTIuOHY2MS42Qzc4NSAyOTEuNCA3NzcuOCAzMDEgNzY3IDMwMWMtMTQgMC0yMi44LTEyLTIyLjgtMzIuOCAwLTU3LjYgMzUuNi04My42IDY2LTgzLjYgNCAwIDggLjggMTEuNi44IDQgMCA1LjItMi40IDUuMi05LjIgMC0xMC40LTcuNi0xNi44LTE4LjQtMTYuOC00OC44IDAtOTUuMiA0MC44LTk1LjIgMTA3LjYgMCAzNCAxNi40IDYwLjQgNDcuNiA2MC40IDE1LjIgMCAyNi40LTcuMiAzNC40LTE2LjQgNiA5LjYgMTYuOCAxNi40IDMwLjggMTYuNCAzNC40IDAgNTAuNC0zNiA1Ny4yLTYyLjQuNC0xLjYuNC0yLjQuNC0yLjggMC03LjYtNy42LTE2LjQtMTQtMTYuNC00IDAtOCAzLjYtOS42IDEyLTMuNiAxNy42LTEwLjggNDMuMi0yNi44IDQzLjJ6Ii8+PHBhdGggY2xhc3M9InN0MCIgZD0iTTk0OSAzMjcuNGMzNC40IDAgNTAtMzYgNTcuMi02Mi40IDAtLjguNC0xLjYuNC0yLjggMC03LjYtNy42LTE2LjQtMTQtMTYuNC00IDAtOCAzLjYtOS42IDEyLTMuNiAxNy42LTEwLjQgNDMuMi0yOC44IDQzLjItMTAuOCAwLTE2LTEwLjQtMTYtMjEuNiAwLTQwIDE4LTg3LjIgMTgtOTIgMS42LTkuMi0xNC40LTIyLjQtMTkuMi0yMi40aC0yMC44Yy00IDAtOCAwLTIxLjItMS42LTQuNC0xNi40LTE1LjYtMjEuMi0yNS4yLTIxLjItMTAuNCAwLTIwIDcuMi0yMCAxOC40IDAgMTEuNiA3LjIgMjAgMTcuMiAyNS42LS40IDIwLjQtMiA1My42LTYuNCA2OS42LTMuNiAxMy42IDE3LjIgMjggMjIuNCAxMS4yIDcuMi0yMy4yIDkuNi01OCAxMC03My42aDM0LjhjLTEyLjggMzQuNC0yMCA2Mi44LTIwIDg4LjQgMCAzNS4yIDIyLjQgNDUuNiA0MS4yIDQ1LjZ6Ii8+PHBhdGggY2xhc3M9InN0MCIgZD0iTTk4NC42IDMwOS44YzAgMTQuOCAxMS4yIDE3LjYgMTkuMiAxNy42IDExLjYgMCAxMS4yLTkuNiAxMS4yLTE3LjJ2LTU4LjRjMi44LTMxLjYgMjcuNi02NiAzOS4yLTY2IDcuNiAwIDguNCAxMC40IDguNCAyMi44djgxLjJjMCAyMC40IDEyLjQgMzcuNiAzMy42IDM3LjYgMzQuNCAwIDUxLjQtMzYgNTguMi02Mi40LjQtMS42LjQtMi40LjQtMi44IDAtNy42LTcuNi0xNi40LTE0LTE2LjQtNCAwLTggMy42LTkuNiAxMi0zLjYgMTcuNi0xMS44IDQzLjItMjcuOCA0My4yLTEwLjQgMC0xMC40LTE0LjgtMTAuNC0xOC40di04Mi44YzAtMTguNC02LjQtNDAuNC0zMy4yLTQwLjQtMTkuNiAwLTM0IDE3LjItNDQuOCAzOS42di0xOGMwLTkuNi04LjQtMTcuNi0yMS42LTE3LjYtNS42IDAtMTAuNCAyLjgtMTAuNCA2LjggMCAyLjggMS42IDUuMiAxLjYgMTIuOHYxMjYuOHpNMjU5IDBjMTQzIDAgMjU5IDExNiAyNTkgMjU5UzQwMiA1MTggMjU5IDUxOCAwIDQwMiAwIDI1OSAxMTYgMCAyNTkgMHoiLz48cGF0aCBjbGFzcz0ic3QxIiBkPSJNNDM1LjIgMzM3LjVjLTEuOC0xNC4yLTEzLjgtMjQtMjkuMi0yMy44LTIzIC4zLTQyLjMgMTIuMi01NS4xIDIwLjEtNSAzLjEtOS4zIDUuNC0xMyA3LjEuOC0xMS42LjEtMjYuOC01LjktNDMuNS03LjMtMjAtMTcuMS0zMi4zLTI0LjEtMzkuNCA4LjEtMTEuOCAxOS4yLTI5IDI0LjQtNTUuNiA0LjUtMjIuNyAzLjEtNTgtNy4yLTc3LjgtMi4xLTQtNS42LTYuOS0xMC04LjEtMS44LS41LTUuMi0xLjUtMTEuOS40QzI5My4xIDk2IDI4OS42IDkzLjggMjg2LjkgOTJjLTUuNi0zLjYtMTIuMi00LjQtMTguNC0yLjEtOC4zIDMtMTUuNCAxMS0yMi4xIDI1LjItMSAyLjEtMS45IDQuMS0yLjcgNi4xLTEyLjcuOS0zMi43IDUuNS00OS42IDIzLjgtMi4xIDIuMy02LjIgNC0xMC41IDUuNmguMWMtOC44IDMuMS0xMi44IDEwLjMtMTcuNyAyMy4zLTYuOCAxOC4yLjIgMzYuMSA3LjEgNDcuNy05LjQgOC40LTIxLjkgMjEuOC0yOC41IDM3LjUtOC4yIDE5LjQtOS4xIDM4LjQtOC44IDQ4LjctNyA3LjQtMTcuOCAyMS4zLTE5IDM2LjktMS42IDIxLjggNi4zIDM2LjYgOS44IDQyIDEgMS42IDIuMSAyLjkgMy4zIDQuMi0uNCAyLjctLjUgNS42LjEgOC42IDEuMyA3IDUuNyAxMi43IDEyLjQgMTYuMyAxMy4yIDcgMzEuNiAxMCA0NS44IDIuOSA1LjEgNS40IDE0LjQgMTAuNiAzMS4zIDEwLjZoMWM0LjMgMCA1OC45LTIuOSA3NC44LTYuOCA3LjEtMS43IDEyLTQuNyAxNS4yLTcuNCAxMC4yLTMuMiAzOC40LTEyLjggNjUtMzAgMTguOC0xMi4yIDI1LjMtMTQuOCAzOS4zLTE4LjIgMTMuNi0zLjMgMjIuMS0xNS43IDIwLjQtMjkuNHptLTIzLjggMTQuN2MtMTYgMy44LTI0LjEgNy4zLTQzLjkgMjAuMi0zMC45IDIwLTY0LjcgMjkuMy02NC43IDI5LjNzLTIuOCA0LjItMTAuOSA2LjFjLTE0IDMuNC02Ni43IDYuMy03MS41IDYuNC0xMi45LjEtMjAuOC0zLjMtMjMtOC42LTYuNy0xNiA5LjYtMjMgOS42LTIzcy0zLjYtMi4yLTUuNy00LjJjLTEuOS0xLjktMy45LTUuNy00LjUtNC4zLTIuNSA2LjEtMy44IDIxLTEwLjUgMjcuNy05LjIgOS4zLTI2LjYgNi4yLTM2LjkuOC0xMS4zLTYgLjgtMjAuMS44LTIwLjFzLTYuMSAzLjYtMTEtMy44Yy00LjQtNi44LTguNS0xOC40LTcuNC0zMi43IDEuMi0xNi4zIDE5LjQtMzIuMSAxOS40LTMyLjFzLTMuMi0yNC4xIDcuMy00OC44YzkuNS0yMi41IDM1LjEtNDAuNiAzNS4xLTQwLjZzLTIxLjUtMjMuOC0xMy41LTQ1LjJjNS4yLTE0IDcuMy0xMy45IDktMTQuNSA2LTIuMyAxMS44LTQuOCAxNi4xLTkuNSAyMS41LTIzLjIgNDguOS0xOC44IDQ4LjktMTguOHMxMy0zOS41IDI1LTMxLjhjMy43IDIuNCAxNyAzMiAxNyAzMnMxNC4yLTguMyAxNS44LTUuMmM4LjYgMTYuNyA5LjYgNDguNiA1LjggNjgtNi40IDMyLTIyLjQgNDkuMi0yOC44IDYwLTEuNSAyLjUgMTcuMiAxMC40IDI5IDQzLjEgMTAuOSAyOS45IDEuMiA1NSAyLjkgNTcuOC4zLjUuNC43LjQuN3MxMi41IDEgMzcuNi0xNC41YzEzLjQtOC4zIDI5LjMtMTcuNiA0Ny40LTE3LjggMTcuNS0uMyAxOC40IDIwLjIgNS4yIDIzLjR6Ii8+PC9zdmc+
194194
style=height:3em;vertical-align:middle></a><button
195195
class="css-kapooa e11px6xy6"></button></div>
196196
<div class="css-1syd0he e11px6xy7">
197-
<div class="css-1rgujud e11px6xy8"><a href=https://next.yarnpkg.com/>Home </a> </div>
197+
<div class="css-1rgujud e11px6xy8"><a href=https://yarnpkg.com/>Home </a> </div>
198198
<div class="css-1rgujud e11px6xy8"><a
199-
href=https://next.yarnpkg.com/getting-started>Getting started</a> </div> <div
199+
href=https://yarnpkg.com/getting-started>Getting started</a> </div> <div
200200
class="css-1rgujud e11px6xy8"><a
201-
href=https://next.yarnpkg.com/configuration>Configuration </a> </div> <div
202-
class="css-1rgujud e11px6xy8"><a href=https://next.yarnpkg.com/features>Features
201+
href=https://yarnpkg.com/configuration>Configuration </a> </div> <div
202+
class="css-1rgujud e11px6xy8"><a href=https://yarnpkg.com/features>Features
203203
</a> </div> <div class="css-1rgujud e11px6xy8"><a
204-
href=https://next.yarnpkg.com/cli>CLI </a> </div> <div
204+
href=https://yarnpkg.com/cli>CLI </a> </div> <div
205205
class="css-1rgujud e11px6xy8"><a
206-
href=https://next.yarnpkg.com/advanced>Advanced </a> </div> </div>
206+
href=https://yarnpkg.com/advanced>Advanced </a> </div> </div>
207207
</header> </div> <main class="main-content">
208208
<h1>THE YARN V2 DOCS HAVE MOVED</h1>
209209
<p>If your browser does not redirect you <a
210-
href="https://next.yarnpkg.com">click here to visit the new
210+
href="https://yarnpkg.com">click here to visit the new
211211
documentation site</a>.
212212
</p>
213213
</main>

0 commit comments

Comments
 (0)