Skip to content
This repository was archived by the owner on Dec 25, 2017. It is now read-only.

Commit 161cfe0

Browse files
committed
Modify namespace for vuejs orgnization
1 parent 43ed630 commit 161cfe0

13 files changed

+31
-29
lines changed

HISTORY.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# v0.11.3 / 2015-01-31
2+
3+
* Change namespace for vuejs orginaization
4+
15
# v0.11.2 / 2014-12-29
26

37
* Change saucelabs account

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2014 kazuya kawaguchi
3+
Copyright (c) 2014-2015 kazuya kawaguchi
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy of
66
this software and associated documentation files (the "Software"), to deal in

README.md

+6-8
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# vue-validator
22

3-
[![Build Status](https://travis-ci.org/kazupon/vue-validator.svg?branch=master)](https://travis-ci.org/kazupon/vue-validator)
4-
[![Coverage Status](https://img.shields.io/coveralls/kazupon/vue-validator.svg)](https://coveralls.io/r/kazupon/vue-validator)
3+
[![Build Status](https://travis-ci.org/vuejs/vue-validator.svg?branch=master)](https://travis-ci.org/vuejs/vue-validator)
4+
[![Coverage Status](https://img.shields.io/coveralls/vuejs/vue-validator.svg)](https://coveralls.io/r/vuejs/vue-validator)
55
[![Sauce Test Status](https://saucelabs.com/buildstatus/vue-validator)](https://saucelabs.com/u/vue-validator)
66

77

@@ -14,9 +14,9 @@ Validator component for Vue.js
1414

1515
# Installation
1616

17-
## browserify (npm)
17+
## npm
1818
```shell
19-
$ npm install kazupon/vue-validator
19+
$ npm install vue-validator
2020
```
2121

2222
## bower
@@ -28,13 +28,13 @@ $ bower install vue-validator
2828
## component
2929

3030
```shell
31-
$ component install kazupon/vue-validator
31+
$ component install vuejs/vue-validator
3232
```
3333

3434
## duo
3535

3636
```javascript
37-
var validator = require('kazupon/vue-validator')
37+
var validator = require('vuejs/vue-validator')
3838
```
3939

4040

@@ -384,8 +384,6 @@ If you did not specify, you can use validation directive name as 'v-validate' (d
384384
# Testing
385385

386386
```shell
387-
$ git clone [email protected]:kazupon/vue-validator.git
388-
$ npm install
389387
$ make test
390388
```
391389

bower.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"name": "vue-validator",
33
"main": "dist/vue-validator.js",
4-
"description": "A collection of commonly-used validators for Vue.js",
5-
"version": "0.11.2",
6-
"homepage": "https://github.com/kazupon/vue-validator",
4+
"description": "Validator component for Vue.js",
5+
"version": "0.11.3",
6+
"homepage": "https://github.com/vuejs/vue-validator",
77
"authors": [
88
"kazuya kawaguchi <[email protected]>"
99
],

component.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"name": "vue-validator",
3-
"repo": "kazupon/vue-validator",
4-
"version": "0.11.2",
5-
"description": "A collection of commonly-used validators for Vue.js",
3+
"repo": "vuejs/vue-validator",
4+
"version": "0.11.3",
5+
"description": "Validator component for Vue.js",
66
"keywords": [
77
"vue",
88
"validation",

dist/vue-validator.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
2-
* vue-validator v0.11.2
3-
* (c) 2014 kazuya kawaguchi
2+
* vue-validator v0.11.3
3+
* (c) 2014-2015 kazuya kawaguchi
44
* Released under the MIT License.
55
*/
66

dist/vue-validator.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

example/browserify/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@
1010
],
1111
"dependencies": {
1212
"vue": "^0.11.2",
13-
"vue-validator": "kazupon/vue-validator#master"
13+
"vue-validator": "vuejs/vue-validator#master"
1414
}
1515
}

example/component/component.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
],
1111
"dependencies": {
1212
"yyx990803/vue": "0.11.2",
13-
"kazupon/vue-validator": "0.11.0"
13+
"vuejs/vue-validator": "0.11.0"
1414
},
1515
"development": {},
1616
"scripts": [

example/duo/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
var Vue = require('yyx990803/[email protected]')
2-
var validator = require('kazupon/[email protected].0')
2+
var validator = require('vuejs/[email protected].3')
33

44
Vue.use(validator)
55

example/webpack/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@
1010
],
1111
"dependencies": {
1212
"vue": "^0.11.2",
13-
"vue-validator": "kazupon/vue-validator#master"
13+
"vue-validator": "vuejs/vue-validator#master"
1414
}
1515
}

package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
22
"name": "vue-validator",
3-
"version": "0.11.2",
4-
"description": "A collection of commonly-used validators for Vue.js",
3+
"version": "0.11.3",
4+
"description": "Validator component for Vue.js",
55
"main": "index.js",
66
"scripts": {
77
"test": "make ci"
88
},
99
"repository": {
1010
"type": "git",
11-
"url": "git://github.com/kazupon/vue-validator.git"
11+
"url": "https://github.com/vuejs/vue-validator.git"
1212
},
1313
"keywords": [
1414
"vue",
@@ -18,9 +18,9 @@
1818
"author": "kazuya kawaguchi",
1919
"license": "MIT",
2020
"bugs": {
21-
"url": "https://github.com/kazupon/vue-validator/issues"
21+
"url": "https://github.com/vuejs/vue-validator/issues"
2222
},
23-
"homepage": "https://github.com/kazupon/vue-validator",
23+
"homepage": "https://github.com/vuejs/vue-validator",
2424
"devDependencies": {
2525
"expect.js": "^0.3.1",
2626
"jshint": "^2.5.0",

webpack.conf.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ var pack = require('./package.json')
99
var banner =
1010
'/**\n' +
1111
' * ' + pack.name + ' v' + pack.version + '\n' +
12-
' * (c) ' + new Date().getFullYear() + ' ' + pack.author + '\n' +
12+
' * (c) 2014-' + new Date().getFullYear() + ' ' + pack.author + '\n' +
1313
' * Released under the ' + pack.license + ' License.\n' +
1414
' */\n'
1515

0 commit comments

Comments
 (0)