Skip to content

Commit d38c3df

Browse files
committedMay 16, 2022
build: bundle 3.5.4
1 parent 86d7f1f commit d38c3df

6 files changed

+30
-30
lines changed
 

‎dist/vue-router.common.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
2-
* vue-router v3.5.3
3-
* (c) 2021 Evan You
2+
* vue-router v3.5.4
3+
* (c) 2022 Evan You
44
* @license MIT
55
*/
66
'use strict';
@@ -520,7 +520,7 @@ function parsePath (path) {
520520
}
521521

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

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

31443144
VueRouter.install = install;
3145-
VueRouter.version = '3.5.3';
3145+
VueRouter.version = '3.5.4';
31463146
VueRouter.isNavigationFailure = isNavigationFailure;
31473147
VueRouter.NavigationFailureType = NavigationFailureType;
31483148
VueRouter.START_LOCATION = START;

‎dist/vue-router.esm.browser.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
2-
* vue-router v3.5.3
3-
* (c) 2021 Evan You
2+
* vue-router v3.5.4
3+
* (c) 2022 Evan You
44
* @license MIT
55
*/
66
/* */
@@ -505,7 +505,7 @@ function parsePath (path) {
505505
}
506506

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

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

31103110
VueRouter.install = install;
3111-
VueRouter.version = '3.5.3';
3111+
VueRouter.version = '3.5.4';
31123112
VueRouter.isNavigationFailure = isNavigationFailure;
31133113
VueRouter.NavigationFailureType = NavigationFailureType;
31143114
VueRouter.START_LOCATION = START;

‎dist/vue-router.esm.browser.min.js

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

‎dist/vue-router.esm.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
2-
* vue-router v3.5.3
3-
* (c) 2021 Evan You
2+
* vue-router v3.5.4
3+
* (c) 2022 Evan You
44
* @license MIT
55
*/
66
/* */
@@ -518,7 +518,7 @@ function parsePath (path) {
518518
}
519519

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

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

31423142
VueRouter.install = install;
3143-
VueRouter.version = '3.5.3';
3143+
VueRouter.version = '3.5.4';
31443144
VueRouter.isNavigationFailure = isNavigationFailure;
31453145
VueRouter.NavigationFailureType = NavigationFailureType;
31463146
VueRouter.START_LOCATION = START;

‎dist/vue-router.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
2-
* vue-router v3.5.3
3-
* (c) 2021 Evan You
2+
* vue-router v3.5.4
3+
* (c) 2022 Evan You
44
* @license MIT
55
*/
66
(function (global, factory) {
@@ -524,7 +524,7 @@
524524
}
525525

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

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

31473147
VueRouter.install = install;
3148-
VueRouter.version = '3.5.3';
3148+
VueRouter.version = '3.5.4';
31493149
VueRouter.isNavigationFailure = isNavigationFailure;
31503150
VueRouter.NavigationFailureType = NavigationFailureType;
31513151
VueRouter.START_LOCATION = START;

‎dist/vue-router.min.js

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

0 commit comments

Comments
 (0)
Please sign in to comment.