Skip to content

Commit

Permalink
[build] 2.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
yyx990803 committed Apr 24, 2017
1 parent 19cf05c commit e8b4d60
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 deletions.
8 changes: 4 additions & 4 deletions dist/vue-router.common.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* vue-router v2.5.0
* vue-router v2.5.1
* (c) 2017 Evan You
* @license MIT
*/
Expand Down Expand Up @@ -1174,8 +1174,8 @@ function compileRouteRegex (path) {
if (process.env.NODE_ENV !== 'production') {
var keys = {};
regex.keys.forEach(function (key) {
warn(!keys[key], ("Duplicate param keys in route with path: \"" + path + "\""));
keys[key] = true;
warn(!keys[key.name], ("Duplicate param keys in route with path: \"" + path + "\""));
keys[key.name] = true;
});
}
return regex
Expand Down Expand Up @@ -2446,7 +2446,7 @@ function createHref (base, fullPath, mode) {
}

VueRouter.install = install;
VueRouter.version = '2.5.0';
VueRouter.version = '2.5.1';

if (inBrowser && window.Vue) {
window.Vue.use(VueRouter);
Expand Down
8 changes: 4 additions & 4 deletions dist/vue-router.esm.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* vue-router v2.5.0
* vue-router v2.5.1
* (c) 2017 Evan You
* @license MIT
*/
Expand Down Expand Up @@ -1172,8 +1172,8 @@ function compileRouteRegex (path) {
if (process.env.NODE_ENV !== 'production') {
var keys = {};
regex.keys.forEach(function (key) {
warn(!keys[key], ("Duplicate param keys in route with path: \"" + path + "\""));
keys[key] = true;
warn(!keys[key.name], ("Duplicate param keys in route with path: \"" + path + "\""));
keys[key.name] = true;
});
}
return regex
Expand Down Expand Up @@ -2444,7 +2444,7 @@ function createHref (base, fullPath, mode) {
}

VueRouter.install = install;
VueRouter.version = '2.5.0';
VueRouter.version = '2.5.1';

if (inBrowser && window.Vue) {
window.Vue.use(VueRouter);
Expand Down
8 changes: 4 additions & 4 deletions dist/vue-router.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* vue-router v2.5.0
* vue-router v2.5.1
* (c) 2017 Evan You
* @license MIT
*/
Expand Down Expand Up @@ -1178,8 +1178,8 @@ function compileRouteRegex (path) {
{
var keys = {};
regex.keys.forEach(function (key) {
warn(!keys[key], ("Duplicate param keys in route with path: \"" + path + "\""));
keys[key] = true;
warn(!keys[key.name], ("Duplicate param keys in route with path: \"" + path + "\""));
keys[key.name] = true;
});
}
return regex
Expand Down Expand Up @@ -2450,7 +2450,7 @@ function createHref (base, fullPath, mode) {
}

VueRouter.install = install;
VueRouter.version = '2.5.0';
VueRouter.version = '2.5.1';

if (inBrowser && window.Vue) {
window.Vue.use(VueRouter);
Expand Down
Loading

0 comments on commit e8b4d60

Please sign in to comment.