Skip to content

Commit e12d407

Browse files
committed
chore: update repo links
1 parent 7a3300a commit e12d407

File tree

7 files changed

+18
-18
lines changed

7 files changed

+18
-18
lines changed

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Hi! I’m really excited that you are interested in contributing to Vue.js. Befo
44

55
## Issue Reporting Guidelines
66

7-
- The issue list of this repo is **exclusively** for bug reports and feature requests. For simple questions, please use either [Gitter](https://gitter.im/yyx990803/vue) or [the official forum](http://forum.vuejs.org/).
7+
- The issue list of this repo is **exclusively** for bug reports and feature requests. For simple questions, please use either [Gitter](https://gitter.im/vuejs/vue) or [the official forum](http://forum.vuejs.org/).
88

99
- Try to search for your issue, it may have already been answered or even fixed in the development branch.
1010

@@ -94,4 +94,4 @@ The default task (by simply running `grunt`) will do the following: lint -> buil
9494

9595
The unit tests are written with Jasmine and run with Karma. The e2e tests are written for and run with CasperJS.
9696

97-
Note that the unit tests will automatically be run in Chrome, Firefox and Safari. If you are not on a Mac, or don't have one of the browsers installed on your system, you can modify the [karma config in gruntfile.js](https://github.com/yyx990803/vue/blob/dev/gruntfile.js#L38) to only run Karma tests in browsers that are available on your system. Just make sure don’t check in the gruntfile changes for the commit.
97+
Note that the unit tests will automatically be run in Chrome, Firefox and Safari. If you are not on a Mac, or don't have one of the browsers installed on your system, you can modify the [karma config in gruntfile.js](https://github.com/vuejs/vue/blob/dev/gruntfile.js#L38) to only run Karma tests in browsers that are available on your system. Just make sure don’t check in the gruntfile changes for the commit.

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
<p align="center"><a href="http://vuejs.org" target="_blank"><img width="100"src="http://vuejs.org/images/logo.png"></a></p>
22

33
<p align="center">
4-
<a href="https://circleci.com/gh/yyx990803/vue/tree/master"><img src="https://circleci.com/gh/yyx990803/vue/tree/master.svg?style=shield" alt="Build Status"></a>
5-
<a href="https://codecov.io/github/yyx990803/vue?branch=master"><img src="https://codecov.io/github/yyx990803/vue/coverage.svg?branch=dev" alt="Coverage Status"></a>
6-
<a href="https://www.bithound.io/github/yyx990803/vue"><img src="https://www.bithound.io/github/yyx990803/vue/badges/score.svg" alt="bitHound Score"></a>
4+
<a href="https://circleci.com/gh/vuejs/vue/tree/master"><img src="https://circleci.com/gh/vuejs/vue/tree/master.svg?style=shield" alt="Build Status"></a>
5+
<a href="https://codecov.io/github/vuejs/vue?branch=master"><img src="https://codecov.io/github/vuejs/vue/coverage.svg?branch=dev" alt="Coverage Status"></a>
6+
<a href="https://www.bithound.io/github/vuejs/vue"><img src="https://www.bithound.io/github/vuejs/vue/badges/score.svg" alt="bitHound Score"></a>
77
<br>
8-
<a href="http://issuestats.com/github/yyx990803/vue"><img src="http://issuestats.com/github/yyx990803/vue/badge/issue?style=flat"></a>
9-
<a href="https://gitter.im/yyx990803/vue"><img src="https://badges.gitter.im/Join Chat.svg"></a>
8+
<a href="http://issuestats.com/github/vuejs/vue"><img src="http://issuestats.com/github/vuejs/vue/badge/issue?style=flat"></a>
9+
<a href="https://gitter.im/vuejs/vue"><img src="https://badges.gitter.im/Join Chat.svg"></a>
1010
</p>
1111

1212
## Intro
@@ -23,19 +23,19 @@ Note that Vue.js only supports [ES5-compliant browsers](http://kangax.github.io/
2323

2424
## Questions
2525

26-
For questions and support please use the [Gitter chat room](https://gitter.im/yyx990803/vue) or [the official forum](http://forum.vuejs.org). The issue list of this repo is **exclusively** for bug reports and feature requests.
26+
For questions and support please use the [Gitter chat room](https://gitter.im/vuejs/vue) or [the official forum](http://forum.vuejs.org). The issue list of this repo is **exclusively** for bug reports and feature requests.
2727

2828
## Issues
2929

30-
Please make sure to read the [Issue Reporting Checklist](https://github.com/yyx990803/vue/blob/dev/CONTRIBUTING.md#issue-reporting-guidelines) before opening an issue. Issues not conforming to the guidelines may be closed immediately.
30+
Please make sure to read the [Issue Reporting Checklist](https://github.com/vuejs/vue/blob/dev/CONTRIBUTING.md#issue-reporting-guidelines) before opening an issue. Issues not conforming to the guidelines may be closed immediately.
3131

3232
## Contribution
3333

34-
Please make sure to read the [Contributing Guide](https://github.com/yyx990803/vue/blob/dev/CONTRIBUTING.md) before making a pull request. If you have a Vue-related project/component/tool, add it to [this list](https://github.com/yyx990803/vue/wiki/User-Contributed-Components-&-Tools)!
34+
Please make sure to read the [Contributing Guide](https://github.com/vuejs/vue/blob/dev/CONTRIBUTING.md) before making a pull request. If you have a Vue-related project/component/tool, add it to [this list](https://github.com/vuejs/vue/wiki/User-Contributed-Components-&-Tools)!
3535

3636
## Changelog
3737

38-
Details changes for each release are documented in the [release notes](https://github.com/yyx990803/vue/releases).
38+
Details changes for each release are documented in the [release notes](https://github.com/vuejs/vue/releases).
3939

4040
## Stay In Touch
4141

examples/commits/app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
var apiURL = 'https://api.github.com/repos/yyx990803/vue/commits?per_page=3&sha='
1+
var apiURL = 'https://api.github.com/repos/vuejs/vue/commits?per_page=3&sha='
22
var isPhantom = navigator.userAgent.indexOf('PhantomJS') > -1
33

44
/**

examples/commits/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ <h1>Latest Vue.js Commits</h1>
3131
v-model="currentBranch">
3232
<label :for="branch">{{branch}}</label>
3333
</template>
34-
<p>yyx990803/vue@{{currentBranch}}</p>
34+
<p>vuejs/vue@{{currentBranch}}</p>
3535
<ul>
3636
<li v-for="record in commits">
3737
<a :href="record.html_url" target="_blank" class="commit">{{record.sha.slice(0, 7)}}</a>

examples/todomvc/readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Get help from other Vue.js users:
1919

2020
* [Vue.js official forum](http://forum.vuejs.org)
2121
* [Vue.js on Twitter](https://twitter.com/vuejs)
22-
* [Vue.js on Gitter](https://gitter.im/yyx990803/vue)
22+
* [Vue.js on Gitter](https://gitter.im/vuejs/vue)
2323

2424
_If you have other helpful links to share, or find any of the links above no longer work, please [let us know](https://github.com/tastejs/todomvc/issues)._
2525

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212
"main": "src/vue.js",
1313
"repository": {
1414
"type": "git",
15-
"url": "https://github.com/yyx990803/vue.git"
15+
"url": "https://github.com/vuejs/vue.git"
1616
},
17-
"bugs": "https://github.com/yyx990803/vue/issues",
17+
"bugs": "https://github.com/vuejs/vue/issues",
1818
"homepage": "http://vuejs.org",
1919
"scripts": {
2020
"test": "grunt ci",

test/e2e/commits.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ casper.test.begin('commits', 18, function (test) {
1414
test.assertSelectorHasText('label[for="dev"]', 'dev')
1515
// initial fetched commits
1616
test.assertField('branch', 'master')
17-
test.assertSelectorHasText('p', 'yyx990803/vue@master')
17+
test.assertSelectorHasText('p', 'vuejs/vue@master')
1818
test.assertElementCount('li', 3)
1919
test.assertSelectorHasText('li:first-child a.commit', '1111111')
2020
test.assertSelectorHasText('li:first-child span.message', 'one')
@@ -23,7 +23,7 @@ casper.test.begin('commits', 18, function (test) {
2323
})
2424
.thenClick('input[value="dev"]', function () {
2525
test.assertField('branch', 'dev')
26-
test.assertSelectorHasText('p', 'yyx990803/vue@dev')
26+
test.assertSelectorHasText('p', 'vuejs/vue@dev')
2727
test.assertElementCount('li', 3)
2828
test.assertSelectorHasText('li:first-child a.commit', '2222222')
2929
test.assertSelectorHasText('li:first-child span.message', 'two')

0 commit comments

Comments
 (0)