From 0a4a05d48aba4b8f50c7df1f1663d286d1d9785b Mon Sep 17 00:00:00 2001 From: Zoltan Kochan Date: Fri, 2 Apr 2021 00:34:13 +0300 Subject: [PATCH] fix: update links --- .github/ISSUE_TEMPLATE/config.yml | 2 +- packages/pnpm/README.md | 6 +++--- packages/pnpm/bin/pnpm.js | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index 0bf711e8f6..4571a05475 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -4,5 +4,5 @@ contact_links: url: https://github.com/pnpm/pnpm/discussions/new?category=q-a about: Ask questions and discuss with other community members - name: Chat 🏘 - url: https://pnpm.js.org/r/chat + url: https://r.pnpm.io/chat about: For a quick question you should do it through our community chat \ No newline at end of file diff --git a/packages/pnpm/README.md b/packages/pnpm/README.md index 3000b0e7d0..a76481a485 100644 --- a/packages/pnpm/README.md +++ b/packages/pnpm/README.md @@ -17,7 +17,7 @@ To quote the [Rush](https://rushjs.io/) team: > Microsoft uses pnpm in Rush repos with hundreds of projects and hundreds of PRs per day, and we’ve found it to be very fast and reliable. [![npm version](https://img.shields.io/npm/v/pnpm.svg)](https://www.npmjs.com/package/pnpm) -[![Join the chat at Discord](https://img.shields.io/discord/731599538665553971.svg)](https://pnpm.js.org/r/chat) +[![Join the chat at Discord](https://img.shields.io/discord/731599538665553971.svg)](https://r.pnpm.io/chat) [![OpenCollective](https://opencollective.com/pnpm/backers/badge.svg)](#backers) [![OpenCollective](https://opencollective.com/pnpm/sponsors/badge.svg)](#sponsors) [![Twitter Follow](https://img.shields.io/twitter/follow/pnpmjs.svg?style=social&label=Follow)](https://twitter.com/pnpmjs) @@ -64,7 +64,7 @@ For more advanced usage, read [pnpm CLI](https://pnpm.js.org/pnpm-cli) on our we ## Benchmark -pnpm is up to 2x faster than npm and Yarn classic. See all benchmarks [here](https://pnpm.js.org/r/benchmarks). +pnpm is up to 2x faster than npm and Yarn classic. See all benchmarks [here](https://r.pnpm.io/benchmarks). Benchmarks on an app with lots of dependencies: @@ -74,7 +74,7 @@ Benchmarks on an app with lots of dependencies: - [Frequently Asked Questions](https://pnpm.js.org/faq) - [Stack Overflow](https://stackoverflow.com/questions/tagged/pnpm) -- [Chat](https://pnpm.js.org/r/chat) +- [Chat](https://r.pnpm.io/chat) - [Twitter](https://twitter.com/pnpmjs) - [Awesome list](https://github.com/pnpm/awesome-pnpm) diff --git a/packages/pnpm/bin/pnpm.js b/packages/pnpm/bin/pnpm.js index 25cb21321c..30971e80cb 100755 --- a/packages/pnpm/bin/pnpm.js +++ b/packages/pnpm/bin/pnpm.js @@ -1,6 +1,6 @@ #!/usr/bin/env node const [major, minor] = process.version.substr(1).split('.') -const COMPATIBILITY_PAGE = `Visit https://pnpm.js.org/r/comp to see the list of past pnpm versions with respective Node.js version support.` +const COMPATIBILITY_PAGE = `Visit https://r.pnpm.io/comp to see the list of past pnpm versions with respective Node.js version support.` if (major < 12 || major == 12 && minor < 17) { console.log(`ERROR: This version of pnpm requires at least Node.js v12.17