From 6eae55d19ce18741a176b853afedb30454b2dc2a Mon Sep 17 00:00:00 2001 From: maliming Date: Mon, 9 Mar 2020 16:55:12 +0800 Subject: [PATCH] Update Yarn url. Resolve #3000 --- docs/cs/Getting-Started-Angular-Template.md | 2 +- docs/cs/Getting-Started-AspNetCore-MVC-Template.md | 2 +- docs/en/AspNetCore/Client-Side-Package-Management.md | 4 ++-- docs/en/Getting-Started-Angular-Template.md | 2 +- docs/en/Getting-Started-AspNetCore-MVC-Template.md | 2 +- docs/pt-BR/Getting-Started-Angular-Template.md | 4 ++-- docs/pt-BR/Getting-Started-AspNetCore-MVC-Template.md | 2 +- docs/zh-Hans/AspNetCore/Client-Side-Package-Management.md | 4 ++-- docs/zh-Hans/Getting-Started-AspNetCore-MVC-Template.md | 2 +- 9 files changed, 12 insertions(+), 12 deletions(-) diff --git a/docs/cs/Getting-Started-Angular-Template.md b/docs/cs/Getting-Started-Angular-Template.md index 185ae68c79..076fb45671 100644 --- a/docs/cs/Getting-Started-Angular-Template.md +++ b/docs/cs/Getting-Started-Angular-Template.md @@ -29,7 +29,7 @@ Vytvořené řešení vyžaduje; * [Visual Studio 2019 (v16.4.0+)](https://visualstudio.microsoft.com/vs/) * [.NET Core 3.0+](https://www.microsoft.com/net/download/dotnet-core/) * [Node v12+](https://nodejs.org) -* [Yarn v1.19+](https://yarnpkg.com/) +* [Yarn v1.19+](https://classic.yarnpkg.com/) ### Struktura řešení diff --git a/docs/cs/Getting-Started-AspNetCore-MVC-Template.md b/docs/cs/Getting-Started-AspNetCore-MVC-Template.md index 2149f0f82d..c053e1d76a 100644 --- a/docs/cs/Getting-Started-AspNetCore-MVC-Template.md +++ b/docs/cs/Getting-Started-AspNetCore-MVC-Template.md @@ -29,7 +29,7 @@ Vytvořené řešení vyžaduje; * [Visual Studio 2019 (v16.4.0+)](https://visualstudio.microsoft.com/vs/) * [.NET Core 3.0+](https://www.microsoft.com/net/download/dotnet-core/) * [Node v12+](https://nodejs.org) -* [Yarn v1.19+](https://yarnpkg.com/) +* [Yarn v1.19+](https://classic.yarnpkg.com/) ### Struktura řešení diff --git a/docs/en/AspNetCore/Client-Side-Package-Management.md b/docs/en/AspNetCore/Client-Side-Package-Management.md index f6dea58ff3..63c5cec225 100644 --- a/docs/en/AspNetCore/Client-Side-Package-Management.md +++ b/docs/en/AspNetCore/Client-Side-Package-Management.md @@ -5,7 +5,7 @@ ABP framework can work with any type of client side package management systems. However, ABP framework works best with **NPM/Yarn**. By default, built-in modules are configured to work with NPM/Yarn. -Finally, we suggest the [**Yarn**](https://yarnpkg.com/) over the NPM since it's faster, stable and also compatible with the NPM. +Finally, we suggest the [**Yarn**](https://classic.yarnpkg.com/) over the NPM since it's faster, stable and also compatible with the NPM. ### @ABP NPM Packages @@ -41,7 +41,7 @@ After depending on a NPM package, all you should do is to run the **yarn** comma yarn ```` -Alternatively, you can use `npm install` but [Yarn](https://yarnpkg.com/) is suggested as mentioned before. +Alternatively, you can use `npm install` but [Yarn](https://classic.yarnpkg.com/) is suggested as mentioned before. #### Package Contribution diff --git a/docs/en/Getting-Started-Angular-Template.md b/docs/en/Getting-Started-Angular-Template.md index 6c1f0a4db2..22d672d97a 100644 --- a/docs/en/Getting-Started-Angular-Template.md +++ b/docs/en/Getting-Started-Angular-Template.md @@ -29,7 +29,7 @@ The created solution requires; * [Visual Studio 2019 (v16.4+)](https://visualstudio.microsoft.com/vs/) * [.NET Core 3.0+](https://www.microsoft.com/net/download/dotnet-core/) * [Node v12+](https://nodejs.org) -* [Yarn v1.19+](https://yarnpkg.com/) +* [Yarn v1.19+](https://classic.yarnpkg.com/) ### The Solution Structure diff --git a/docs/en/Getting-Started-AspNetCore-MVC-Template.md b/docs/en/Getting-Started-AspNetCore-MVC-Template.md index 1332a2cd7a..d074e8aaef 100644 --- a/docs/en/Getting-Started-AspNetCore-MVC-Template.md +++ b/docs/en/Getting-Started-AspNetCore-MVC-Template.md @@ -29,7 +29,7 @@ The created solution requires; * [Visual Studio 2019 (v16.4+)](https://visualstudio.microsoft.com/vs/) * [.NET Core 3.0+](https://www.microsoft.com/net/download/dotnet-core/) * [Node v12+](https://nodejs.org) -* [Yarn v1.19+](https://yarnpkg.com/) +* [Yarn v1.19+](https://classic.yarnpkg.com/) ### The Solution Structure diff --git a/docs/pt-BR/Getting-Started-Angular-Template.md b/docs/pt-BR/Getting-Started-Angular-Template.md index 9dac0f080d..f1b3abe790 100644 --- a/docs/pt-BR/Getting-Started-Angular-Template.md +++ b/docs/pt-BR/Getting-Started-Angular-Template.md @@ -29,7 +29,7 @@ A solução criada requer; * [Visual Studio 2019 (v16.4+)](https://visualstudio.microsoft.com/vs/) * [.NET Core 3.0+](https://www.microsoft.com/net/download/dotnet-core/) * [Node v12+](https://nodejs.org) -* [Yarn v1.19+](https://yarnpkg.com/) +* [Yarn v1.19+](https://classic.yarnpkg.com/) ### A Estrutura da Solução @@ -103,7 +103,7 @@ A maioria das APIs de aplicativos requer autenticação e autorização. Se voc #### Execute o aplicativo angular (lado do cliente) -Vá para a `angular`pasta, abra um terminal de linha de comando, digite o `yarn`comando (sugerimos ao gerenciador de pacotes do [yarn](https://yarnpkg.com/) enquanto o npm install também funcionará na maioria dos casos): +Vá para a `angular`pasta, abra um terminal de linha de comando, digite o `yarn`comando (sugerimos ao gerenciador de pacotes do [yarn](https://classic.yarnpkg.com/) enquanto o npm install também funcionará na maioria dos casos): ```bash yarn diff --git a/docs/pt-BR/Getting-Started-AspNetCore-MVC-Template.md b/docs/pt-BR/Getting-Started-AspNetCore-MVC-Template.md index 8a64bbab23..808c0bd94d 100644 --- a/docs/pt-BR/Getting-Started-AspNetCore-MVC-Template.md +++ b/docs/pt-BR/Getting-Started-AspNetCore-MVC-Template.md @@ -29,7 +29,7 @@ A solução criada requer; * [Visual Studio 2019 (v16.4+)](https://visualstudio.microsoft.com/vs/) * [.NET Core 3.0+](https://www.microsoft.com/net/download/dotnet-core/) * [Node v12+](https://nodejs.org) -* [Yarn v1.19+](https://yarnpkg.com/) +* [Yarn v1.19+](https://classic.yarnpkg.com/) ### A Estrutura da Solução diff --git a/docs/zh-Hans/AspNetCore/Client-Side-Package-Management.md b/docs/zh-Hans/AspNetCore/Client-Side-Package-Management.md index 4d45022da0..2c50064be0 100644 --- a/docs/zh-Hans/AspNetCore/Client-Side-Package-Management.md +++ b/docs/zh-Hans/AspNetCore/Client-Side-Package-Management.md @@ -5,7 +5,7 @@ ABP框架可以与任何类型的客户端包管理系统一起使用. 甚至你 但是, ABP框架最适用于**NPM/Yarn**. 默认情况下,内置模块配置为与NPM/Yarn一起使用. -最后, 我们建议[**Yarn**](https://yarnpkg.com/)而不是NPM,因为它更快,更稳定并且与NPM兼容. +最后, 我们建议[**Yarn**](https://classic.yarnpkg.com/)而不是NPM,因为它更快,更稳定并且与NPM兼容. ### @ABP NPM Packages @@ -41,7 +41,7 @@ ABP是一个模块化平台. 每个开发人员都可以创建模块, 模块应 yarn ```` -虽然你可以使用`npm install`,但如前所述,建议使用[Yarn](https://yarnpkg.com/). +虽然你可以使用`npm install`,但如前所述,建议使用[Yarn](https://classic.yarnpkg.com/). #### 贡献包 diff --git a/docs/zh-Hans/Getting-Started-AspNetCore-MVC-Template.md b/docs/zh-Hans/Getting-Started-AspNetCore-MVC-Template.md index 94bcad8fc5..90291e968f 100644 --- a/docs/zh-Hans/Getting-Started-AspNetCore-MVC-Template.md +++ b/docs/zh-Hans/Getting-Started-AspNetCore-MVC-Template.md @@ -27,7 +27,7 @@ abp new Acme.BookStore * [Visual Studio 2019 (v16.4+)](https://visualstudio.microsoft.com/vs/) * [.NET Core 3.0+](https://www.microsoft.com/net/download/dotnet-core/) * [Node v12+](https://nodejs.org) -* [Yarn v1.19+](https://yarnpkg.com/) +* [Yarn v1.19+](https://classic.yarnpkg.com/) ### 解决方案结构