Skip to content

Commit ce5faf5

Browse files
committed
build: bundle 3.3.1
1 parent 2c77247 commit ce5faf5

6 files changed

+28
-32
lines changed

dist/vue-router.common.js

+6-7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* vue-router v3.3.0
2+
* vue-router v3.3.1
33
* (c) 2020 Evan You
44
* @license MIT
55
*/
@@ -2163,11 +2163,10 @@ History.prototype.confirmTransition = function confirmTransition (route, onCompl
21632163

21642164
var current = this.current;
21652165
var abort = function (err) {
2166-
// after merging https://github.com/vuejs/vue-router/pull/2771 we
2167-
// When the user navigates through history through back/forward buttons
2168-
// we do not want to throw the error. We only throw it if directly calling
2169-
// push/replace. That's why it's not included in isError
2170-
if (!isRouterError(err, NavigationFailureType.duplicated) && isError(err)) {
2166+
// changed after adding errors with
2167+
// https://github.com/vuejs/vue-router/pull/3047 before that change,
2168+
// redirect and aborted navigation would produce an err == null
2169+
if (!isRouterError(err) && isError(err)) {
21712170
if (this$1.errorCbs.length) {
21722171
this$1.errorCbs.forEach(function (cb) {
21732172
cb(err);
@@ -3000,7 +2999,7 @@ function createHref (base, fullPath, mode) {
30002999
}
30013000

30023001
VueRouter.install = install;
3003-
VueRouter.version = '3.3.0';
3002+
VueRouter.version = '3.3.1';
30043003

30053004
if (inBrowser && window.Vue) {
30063005
window.Vue.use(VueRouter);

dist/vue-router.esm.browser.js

+6-7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* vue-router v3.3.0
2+
* vue-router v3.3.1
33
* (c) 2020 Evan You
44
* @license MIT
55
*/
@@ -2153,11 +2153,10 @@ class History {
21532153
confirmTransition (route, onComplete, onAbort) {
21542154
const current = this.current;
21552155
const abort = err => {
2156-
// after merging https://github.com/vuejs/vue-router/pull/2771 we
2157-
// When the user navigates through history through back/forward buttons
2158-
// we do not want to throw the error. We only throw it if directly calling
2159-
// push/replace. That's why it's not included in isError
2160-
if (!isRouterError(err, NavigationFailureType.duplicated) && isError(err)) {
2156+
// changed after adding errors with
2157+
// https://github.com/vuejs/vue-router/pull/3047 before that change,
2158+
// redirect and aborted navigation would produce an err == null
2159+
if (!isRouterError(err) && isError(err)) {
21612160
if (this.errorCbs.length) {
21622161
this.errorCbs.forEach(cb => {
21632162
cb(err);
@@ -2959,7 +2958,7 @@ function createHref (base, fullPath, mode) {
29592958
}
29602959

29612960
VueRouter.install = install;
2962-
VueRouter.version = '3.3.0';
2961+
VueRouter.version = '3.3.1';
29632962

29642963
if (inBrowser && window.Vue) {
29652964
window.Vue.use(VueRouter);

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

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

dist/vue-router.esm.js

+6-7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* vue-router v3.3.0
2+
* vue-router v3.3.1
33
* (c) 2020 Evan You
44
* @license MIT
55
*/
@@ -2161,11 +2161,10 @@ History.prototype.confirmTransition = function confirmTransition (route, onCompl
21612161

21622162
var current = this.current;
21632163
var abort = function (err) {
2164-
// after merging https://github.com/vuejs/vue-router/pull/2771 we
2165-
// When the user navigates through history through back/forward buttons
2166-
// we do not want to throw the error. We only throw it if directly calling
2167-
// push/replace. That's why it's not included in isError
2168-
if (!isRouterError(err, NavigationFailureType.duplicated) && isError(err)) {
2164+
// changed after adding errors with
2165+
// https://github.com/vuejs/vue-router/pull/3047 before that change,
2166+
// redirect and aborted navigation would produce an err == null
2167+
if (!isRouterError(err) && isError(err)) {
21692168
if (this$1.errorCbs.length) {
21702169
this$1.errorCbs.forEach(function (cb) {
21712170
cb(err);
@@ -2998,7 +2997,7 @@ function createHref (base, fullPath, mode) {
29982997
}
29992998

30002999
VueRouter.install = install;
3001-
VueRouter.version = '3.3.0';
3000+
VueRouter.version = '3.3.1';
30023001

30033002
if (inBrowser && window.Vue) {
30043003
window.Vue.use(VueRouter);

dist/vue-router.js

+6-7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* vue-router v3.3.0
2+
* vue-router v3.3.1
33
* (c) 2020 Evan You
44
* @license MIT
55
*/
@@ -2167,11 +2167,10 @@
21672167

21682168
var current = this.current;
21692169
var abort = function (err) {
2170-
// after merging https://github.com/vuejs/vue-router/pull/2771 we
2171-
// When the user navigates through history through back/forward buttons
2172-
// we do not want to throw the error. We only throw it if directly calling
2173-
// push/replace. That's why it's not included in isError
2174-
if (!isRouterError(err, NavigationFailureType.duplicated) && isError(err)) {
2170+
// changed after adding errors with
2171+
// https://github.com/vuejs/vue-router/pull/3047 before that change,
2172+
// redirect and aborted navigation would produce an err == null
2173+
if (!isRouterError(err) && isError(err)) {
21752174
if (this$1.errorCbs.length) {
21762175
this$1.errorCbs.forEach(function (cb) {
21772176
cb(err);
@@ -3004,7 +3003,7 @@
30043003
}
30053004

30063005
VueRouter.install = install;
3007-
VueRouter.version = '3.3.0';
3006+
VueRouter.version = '3.3.1';
30083007

30093008
if (inBrowser && window.Vue) {
30103009
window.Vue.use(VueRouter);

dist/vue-router.min.js

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

0 commit comments

Comments
 (0)