fix: update links

This commit is contained in:
Zoltan Kochan
2021-04-02 00:34:13 +03:00
parent 735d2ac792
commit 0a4a05d48a
3 changed files with 5 additions and 5 deletions

View File

@@ -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

View File

@@ -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 weve 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)

View File

@@ -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