Skip to content

Commit

Permalink
build: bundle 3.5.4
Browse files Browse the repository at this point in the history
  • Loading branch information
posva committed May 16, 2022
1 parent 86d7f1f commit d38c3df
Show file tree
Hide file tree
Showing 6 changed files with 30 additions and 30 deletions.
10 changes: 5 additions & 5 deletions dist/vue-router.common.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*!
* vue-router v3.5.3
* (c) 2021 Evan You
* vue-router v3.5.4
* (c) 2022 Evan You
* @license MIT
*/
'use strict';
Expand Down Expand Up @@ -520,7 +520,7 @@ function parsePath (path) {
}

function cleanPath (path) {
return path.replace(/\/+/g, '/')
return path.replace(/\/(?:\s*\/)+/g, '/')
}

var isarray = Array.isArray || function (arr) {
Expand Down Expand Up @@ -1451,7 +1451,7 @@ function addRouteRecord (
warn(
false,
"Named Route '" + (route.name) + "' has a default child route. " +
"When navigating to this named route (:to=\"{name: '" + (route.name) + "'\"), " +
"When navigating to this named route (:to=\"{name: '" + (route.name) + "'}\"), " +
"the default child route will not be rendered. Remove the name from " +
"this route and use the name of the default child route for named " +
"links instead."
Expand Down Expand Up @@ -3142,7 +3142,7 @@ function createHref (base, fullPath, mode) {
}

VueRouter.install = install;
VueRouter.version = '3.5.3';
VueRouter.version = '3.5.4';
VueRouter.isNavigationFailure = isNavigationFailure;
VueRouter.NavigationFailureType = NavigationFailureType;
VueRouter.START_LOCATION = START;
Expand Down
10 changes: 5 additions & 5 deletions dist/vue-router.esm.browser.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*!
* vue-router v3.5.3
* (c) 2021 Evan You
* vue-router v3.5.4
* (c) 2022 Evan You
* @license MIT
*/
/* */
Expand Down Expand Up @@ -505,7 +505,7 @@ function parsePath (path) {
}

function cleanPath (path) {
return path.replace(/\/+/g, '/')
return path.replace(/\/(?:\s*\/)+/g, '/')
}

var isarray = Array.isArray || function (arr) {
Expand Down Expand Up @@ -1434,7 +1434,7 @@ function addRouteRecord (
`Named Route '${route.name}' has a default child route. ` +
`When navigating to this named route (:to="{name: '${
route.name
}'"), ` +
}'}"), ` +
`the default child route will not be rendered. Remove the name from ` +
`this route and use the name of the default child route for named ` +
`links instead.`
Expand Down Expand Up @@ -3108,7 +3108,7 @@ function createHref (base, fullPath, mode) {
}

VueRouter.install = install;
VueRouter.version = '3.5.3';
VueRouter.version = '3.5.4';
VueRouter.isNavigationFailure = isNavigationFailure;
VueRouter.NavigationFailureType = NavigationFailureType;
VueRouter.START_LOCATION = START;
Expand Down
10 changes: 5 additions & 5 deletions dist/vue-router.esm.browser.min.js

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions dist/vue-router.esm.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*!
* vue-router v3.5.3
* (c) 2021 Evan You
* vue-router v3.5.4
* (c) 2022 Evan You
* @license MIT
*/
/* */
Expand Down Expand Up @@ -518,7 +518,7 @@ function parsePath (path) {
}

function cleanPath (path) {
return path.replace(/\/+/g, '/')
return path.replace(/\/(?:\s*\/)+/g, '/')
}

var isarray = Array.isArray || function (arr) {
Expand Down Expand Up @@ -1449,7 +1449,7 @@ function addRouteRecord (
warn(
false,
"Named Route '" + (route.name) + "' has a default child route. " +
"When navigating to this named route (:to=\"{name: '" + (route.name) + "'\"), " +
"When navigating to this named route (:to=\"{name: '" + (route.name) + "'}\"), " +
"the default child route will not be rendered. Remove the name from " +
"this route and use the name of the default child route for named " +
"links instead."
Expand Down Expand Up @@ -3140,7 +3140,7 @@ function createHref (base, fullPath, mode) {
}

VueRouter.install = install;
VueRouter.version = '3.5.3';
VueRouter.version = '3.5.4';
VueRouter.isNavigationFailure = isNavigationFailure;
VueRouter.NavigationFailureType = NavigationFailureType;
VueRouter.START_LOCATION = START;
Expand Down
10 changes: 5 additions & 5 deletions dist/vue-router.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*!
* vue-router v3.5.3
* (c) 2021 Evan You
* vue-router v3.5.4
* (c) 2022 Evan You
* @license MIT
*/
(function (global, factory) {
Expand Down Expand Up @@ -524,7 +524,7 @@
}

function cleanPath (path) {
return path.replace(/\/+/g, '/')
return path.replace(/\/(?:\s*\/)+/g, '/')
}

var isarray = Array.isArray || function (arr) {
Expand Down Expand Up @@ -1455,7 +1455,7 @@
warn(
false,
"Named Route '" + (route.name) + "' has a default child route. " +
"When navigating to this named route (:to=\"{name: '" + (route.name) + "'\"), " +
"When navigating to this named route (:to=\"{name: '" + (route.name) + "'}\"), " +
"the default child route will not be rendered. Remove the name from " +
"this route and use the name of the default child route for named " +
"links instead."
Expand Down Expand Up @@ -3145,7 +3145,7 @@
}

VueRouter.install = install;
VueRouter.version = '3.5.3';
VueRouter.version = '3.5.4';
VueRouter.isNavigationFailure = isNavigationFailure;
VueRouter.NavigationFailureType = NavigationFailureType;
VueRouter.START_LOCATION = START;
Expand Down
10 changes: 5 additions & 5 deletions dist/vue-router.min.js

Large diffs are not rendered by default.

0 comments on commit d38c3df

Please sign in to comment.