From 92cf129b1998632e33b5ec89faad4e5ddda7a85c Mon Sep 17 00:00:00 2001 From: zkochan Date: Mon, 23 Jan 2017 22:36:01 +0200 Subject: [PATCH] chore: change repo URL --- .travis.yml | 2 +- CONTRIBUTING.md | 2 +- README.md | 6 +++--- docs/recipes/usage-in-monorepos.md | 2 +- docs/vs-npm.md | 2 +- src/api/getContext.ts | 10 +++++----- test/packages/circular-deps-1-of-2/package.json | 2 +- test/packages/circular-deps-2-of-2/package.json | 2 +- test/packages/hello-world-js-bin/package.json | 2 +- test/packages/install-script-example/package.json | 2 +- test/packages/pkg-that-uses-plugins/package.json | 2 +- test/packages/plugin-example/package.json | 2 +- .../pre-and-postinstall-scripts-example/package.json | 2 +- test/packages/sh-hello-world/package.json | 2 +- test/packages/test-pnpm-issue219/package.json | 2 +- test/packages/zkochan~test-pnpm-issue219/package.json | 2 +- 16 files changed, 22 insertions(+), 22 deletions(-) diff --git a/.travis.yml b/.travis.yml index f9b4414518..73dc8674dc 100644 --- a/.travis.yml +++ b/.travis.yml @@ -18,5 +18,5 @@ env: - CC=clang CXX=clang++ npm_config_clang=1 - GIT_NAME: Travis CI - GIT_EMAIL: nobody@nobody.org - - GITHUB_REPO: rstacruz/pnpm + - GITHUB_REPO: pnpm/pnpm - GIT_SOURCE: _docpress diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index c53851f674..71ecc7e979 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -51,7 +51,7 @@ Before you submit your Pull Request (PR) consider the following guidelines: git push origin my-fix-branch ``` -- In GitHub, send a pull request to `rstacruz:master`. +- In GitHub, send a pull request to `pnpm:master`. - If we suggest changes then: - Make the required updates. diff --git a/README.md b/README.md index de9575c8a6..530582550a 100644 --- a/README.md +++ b/README.md @@ -105,11 +105,11 @@ time pnpm i babel-preset-es2015 browserify chalk debug minimist mkdirp ## Preview release -`pnpm` will stay in `<1.0.0` until it's achieved feature parity with `npm install`. See [roadmap](https://github.com/rstacruz/pnpm/milestone/1) for details. +`pnpm` will stay in `<1.0.0` until it's achieved feature parity with `npm install`. See [roadmap](https://github.com/pnpm/pnpm/milestone/1) for details. ## License -[MIT](https://github.com/rstacruz/pnpm/blob/master/LICENSE) © [Rico Sta. Cruz](http://ricostacruz.com) and [contributors] +[MIT](https://github.com/pnpm/pnpm/blob/master/LICENSE) © [Rico Sta. Cruz](http://ricostacruz.com) and [contributors] -[contributors]: http://github.com/rstacruz/pnpm/contributors +[contributors]: http://github.com/pnpm/pnpm/contributors [ied]: https://github.com/alexanderGugel/ied diff --git a/docs/recipes/usage-in-monorepos.md b/docs/recipes/usage-in-monorepos.md index e7bd20554c..87656f5bcd 100644 --- a/docs/recipes/usage-in-monorepos.md +++ b/docs/recipes/usage-in-monorepos.md @@ -19,4 +19,4 @@ config value is set to `true`, `pnpm` will do to changes in it's usual behavior: 1. local dependencies will be resolved with symlinks instead of copy/pasting 2. before publish, the local dependencies will be converted into semver dependencies -Here is an [example monorepo](https://github.com/rstacruz/pnpm/tree/master/examples/monorepo) to see how it works. +Here is an [example monorepo](https://github.com/pnpm/pnpm/tree/master/examples/monorepo) to see how it works. diff --git a/docs/vs-npm.md b/docs/vs-npm.md index 06aeb98b93..74ef5d4806 100644 --- a/docs/vs-npm.md +++ b/docs/vs-npm.md @@ -35,7 +35,7 @@ On the other hand, pnpm manages `node_modules` as an addressable storage in its - Peer dependencies are a little trickier to deal with. - You can't publish npm modules with `bundleDependencies` managed by pnpm. -Got an idea for workarounds for these issues? [Share them.](https://github.com/rstacruz/pnpm/issues/new) +Got an idea for workarounds for these issues? [Share them.](https://github.com/pnpm/pnpm/issues/new) [shrinkwrap]: https://docs.npmjs.com/cli/shrinkwrap [npm ls]: https://docs.npmjs.com/cli/ls diff --git a/src/api/getContext.ts b/src/api/getContext.ts index ba8561438f..ceab9882d9 100644 --- a/src/api/getContext.ts +++ b/src/api/getContext.ts @@ -56,7 +56,7 @@ export default async function (opts: StrictPnpmOptions): Promise { if (!modules.packageManager) { const msg = structureChangeMsg(stripIndent` The change was needed to allow machine stores and dependency locks: - PR: https://github.com/rstacruz/pnpm/pull/524 + PR: https://github.com/pnpm/pnpm/pull/524 `) throw new Error(msg) } @@ -93,14 +93,14 @@ export default async function (opts: StrictPnpmOptions): Promise { function failIfNotCompatibleStore (pnpmVersion: string) { if (!pnpmVersion || !semver.satisfies(pnpmVersion, '>=0.28')) { - const msg = structureChangeMsg('More info about what was changed at: https://github.com/rstacruz/pnpm/issues/276') + const msg = structureChangeMsg('More info about what was changed at: https://github.com/pnpm/pnpm/issues/276') throw new Error(msg) } if (!semver.satisfies(pnpmVersion, '>=0.33')) { const msg = structureChangeMsg(stripIndent` The change was needed to fix the GitHub rate limit issue: - Issue: https://github.com/rstacruz/pnpm/issues/361 - PR: https://github.com/rstacruz/pnpm/pull/363 + Issue: https://github.com/pnpm/pnpm/issues/361 + PR: https://github.com/pnpm/pnpm/pull/363 `) throw new Error(msg) } @@ -123,7 +123,7 @@ function failIfNotCompatibleNodeModules (pnpmVersion: string) { throw new Error(stripIndent` The node_modules structure was changed. Remove it and run pnpm again. - Related PR: https://github.com/rstacruz/pnpm/pull/534 + Related PR: https://github.com/pnpm/pnpm/pull/534 TIPS: you can run \`rm -rf node_modules\` `) } diff --git a/test/packages/circular-deps-1-of-2/package.json b/test/packages/circular-deps-1-of-2/package.json index 0be4ba05ad..d92f6e60bd 100644 --- a/test/packages/circular-deps-1-of-2/package.json +++ b/test/packages/circular-deps-1-of-2/package.json @@ -8,6 +8,6 @@ }, "repository": { "type": "git", - "url": "https://github.com/rstacruz/pnpm/tree/master/test/packages/circular-deps-1-of-2" + "url": "https://github.com/pnpm/pnpm/tree/master/test/packages/circular-deps-1-of-2" } } diff --git a/test/packages/circular-deps-2-of-2/package.json b/test/packages/circular-deps-2-of-2/package.json index 00fbd6a5bc..65843f164b 100644 --- a/test/packages/circular-deps-2-of-2/package.json +++ b/test/packages/circular-deps-2-of-2/package.json @@ -8,6 +8,6 @@ }, "repository": { "type": "git", - "url": "https://github.com/rstacruz/pnpm/tree/master/test/packages/circular-deps-2-of-2" + "url": "https://github.com/pnpm/pnpm/tree/master/test/packages/circular-deps-2-of-2" } } diff --git a/test/packages/hello-world-js-bin/package.json b/test/packages/hello-world-js-bin/package.json index bafa2282e7..670027f692 100644 --- a/test/packages/hello-world-js-bin/package.json +++ b/test/packages/hello-world-js-bin/package.json @@ -10,6 +10,6 @@ "license": "MIT", "repository": { "type": "git", - "url": "https://github.com/rstacruz/pnpm/tree/master/test/packages/hello-world-js-bin" + "url": "https://github.com/pnpm/pnpm/tree/master/test/packages/hello-world-js-bin" } } diff --git a/test/packages/install-script-example/package.json b/test/packages/install-script-example/package.json index ee110504bf..190ed03e8b 100644 --- a/test/packages/install-script-example/package.json +++ b/test/packages/install-script-example/package.json @@ -10,6 +10,6 @@ "license": "MIT", "repository": { "type": "git", - "url": "https://github.com/rstacruz/pnpm/tree/master/test/packages/install-script-example" + "url": "https://github.com/pnpm/pnpm/tree/master/test/packages/install-script-example" } } diff --git a/test/packages/pkg-that-uses-plugins/package.json b/test/packages/pkg-that-uses-plugins/package.json index 2a8d4b385b..11788c68a4 100644 --- a/test/packages/pkg-that-uses-plugins/package.json +++ b/test/packages/pkg-that-uses-plugins/package.json @@ -6,6 +6,6 @@ "bin": "./index.js", "repository": { "type": "git", - "url": "https://github.com/rstacruz/pnpm/tree/master/test/packages/pkg-that-uses-plugins" + "url": "https://github.com/pnpm/pnpm/tree/master/test/packages/pkg-that-uses-plugins" } } diff --git a/test/packages/plugin-example/package.json b/test/packages/plugin-example/package.json index 8e2a5884c3..11804fd3fc 100644 --- a/test/packages/plugin-example/package.json +++ b/test/packages/plugin-example/package.json @@ -5,6 +5,6 @@ "license": "MIT", "repository": { "type": "git", - "url": "https://github.com/rstacruz/pnpm/tree/master/test/packages/plugin-example" + "url": "https://github.com/pnpm/pnpm/tree/master/test/packages/plugin-example" } } diff --git a/test/packages/pre-and-postinstall-scripts-example/package.json b/test/packages/pre-and-postinstall-scripts-example/package.json index 6d4f31598c..eb146be685 100644 --- a/test/packages/pre-and-postinstall-scripts-example/package.json +++ b/test/packages/pre-and-postinstall-scripts-example/package.json @@ -11,6 +11,6 @@ "license": "MIT", "repository": { "type": "git", - "url": "https://github.com/rstacruz/pnpm/tree/master/test/packages/postinstall-example" + "url": "https://github.com/pnpm/pnpm/tree/master/test/packages/postinstall-example" } } diff --git a/test/packages/sh-hello-world/package.json b/test/packages/sh-hello-world/package.json index 0cf4a3fc94..e82fcf1a15 100644 --- a/test/packages/sh-hello-world/package.json +++ b/test/packages/sh-hello-world/package.json @@ -10,6 +10,6 @@ "license": "MIT", "repository": { "type": "git", - "url": "https://github.com/rstacruz/pnpm/tree/master/test/packages/sh-hello-world" + "url": "https://github.com/pnpm/pnpm/tree/master/test/packages/sh-hello-world" } } diff --git a/test/packages/test-pnpm-issue219/package.json b/test/packages/test-pnpm-issue219/package.json index 4b28060a8d..5f907a34fc 100644 --- a/test/packages/test-pnpm-issue219/package.json +++ b/test/packages/test-pnpm-issue219/package.json @@ -13,6 +13,6 @@ }, "repository": { "type": "git", - "url": "https://github.com/rstacruz/pnpm/tree/master/test/packages/test-pnpm-issue219" + "url": "https://github.com/pnpm/pnpm/tree/master/test/packages/test-pnpm-issue219" } } diff --git a/test/packages/zkochan~test-pnpm-issue219/package.json b/test/packages/zkochan~test-pnpm-issue219/package.json index 6d49aed89e..24cace87f6 100644 --- a/test/packages/zkochan~test-pnpm-issue219/package.json +++ b/test/packages/zkochan~test-pnpm-issue219/package.json @@ -10,6 +10,6 @@ "license": "MIT", "repository": { "type": "git", - "url": "https://github.com/rstacruz/pnpm/tree/master/test/packages/zkochan~test-pnpm-issue219" + "url": "https://github.com/pnpm/pnpm/tree/master/test/packages/zkochan~test-pnpm-issue219" } }