chore: change repo URL

This commit is contained in:
zkochan
2017-01-23 22:36:01 +02:00
parent 4ee3814fbe
commit 92cf129b19
16 changed files with 22 additions and 22 deletions

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@@ -56,7 +56,7 @@ export default async function (opts: StrictPnpmOptions): Promise<PnpmContext> {
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<PnpmContext> {
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\`
`)
}

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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