Skip to content

Commit

Permalink
build: bundle 3.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
posva committed May 27, 2020
1 parent 2c77247 commit ce5faf5
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 32 deletions.
13 changes: 6 additions & 7 deletions dist/vue-router.common.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* vue-router v3.3.0
* vue-router v3.3.1
* (c) 2020 Evan You
* @license MIT
*/
Expand Down Expand Up @@ -2163,11 +2163,10 @@ History.prototype.confirmTransition = function confirmTransition (route, onCompl

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

VueRouter.install = install;
VueRouter.version = '3.3.0';
VueRouter.version = '3.3.1';

if (inBrowser && window.Vue) {
window.Vue.use(VueRouter);
Expand Down
13 changes: 6 additions & 7 deletions dist/vue-router.esm.browser.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* vue-router v3.3.0
* vue-router v3.3.1
* (c) 2020 Evan You
* @license MIT
*/
Expand Down Expand Up @@ -2153,11 +2153,10 @@ class History {
confirmTransition (route, onComplete, onAbort) {
const current = this.current;
const abort = err => {
// after merging https://github.com/vuejs/vue-router/pull/2771 we
// When the user navigates through history through back/forward buttons
// we do not want to throw the error. We only throw it if directly calling
// push/replace. That's why it's not included in isError
if (!isRouterError(err, NavigationFailureType.duplicated) && isError(err)) {
// changed after adding errors with
// https://github.com/vuejs/vue-router/pull/3047 before that change,
// redirect and aborted navigation would produce an err == null
if (!isRouterError(err) && isError(err)) {
if (this.errorCbs.length) {
this.errorCbs.forEach(cb => {
cb(err);
Expand Down Expand Up @@ -2959,7 +2958,7 @@ function createHref (base, fullPath, mode) {
}

VueRouter.install = install;
VueRouter.version = '3.3.0';
VueRouter.version = '3.3.1';

if (inBrowser && window.Vue) {
window.Vue.use(VueRouter);
Expand Down
4 changes: 2 additions & 2 deletions dist/vue-router.esm.browser.min.js

Large diffs are not rendered by default.

13 changes: 6 additions & 7 deletions dist/vue-router.esm.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* vue-router v3.3.0
* vue-router v3.3.1
* (c) 2020 Evan You
* @license MIT
*/
Expand Down Expand Up @@ -2161,11 +2161,10 @@ History.prototype.confirmTransition = function confirmTransition (route, onCompl

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

VueRouter.install = install;
VueRouter.version = '3.3.0';
VueRouter.version = '3.3.1';

if (inBrowser && window.Vue) {
window.Vue.use(VueRouter);
Expand Down
13 changes: 6 additions & 7 deletions dist/vue-router.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* vue-router v3.3.0
* vue-router v3.3.1
* (c) 2020 Evan You
* @license MIT
*/
Expand Down Expand Up @@ -2167,11 +2167,10 @@

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

VueRouter.install = install;
VueRouter.version = '3.3.0';
VueRouter.version = '3.3.1';

if (inBrowser && window.Vue) {
window.Vue.use(VueRouter);
Expand Down
4 changes: 2 additions & 2 deletions dist/vue-router.min.js

Large diffs are not rendered by default.

0 comments on commit ce5faf5

Please sign in to comment.