Skip to content

Commit

Permalink
Merge branch 'release/1.3.4'
Browse files Browse the repository at this point in the history
  • Loading branch information
dgrubelic committed Oct 24, 2017
2 parents 3ddeb22 + c774f07 commit 166db40
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions dist/vue-authenticate.common.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* vue-authenticate v1.3.3
* vue-authenticate v1.3.4
* https://github.com/dgrubelic/vue-authenticate
* Released under the MIT License.
*/
Expand Down Expand Up @@ -1381,7 +1381,7 @@ VueAuthenticate.prototype.authenticate = function authenticate (provider, userDa
} else {
return reject(new Error('Authentication failed'))
}
})
}).catch(function (err) { return reject(err); })
})
};

Expand Down
4 changes: 2 additions & 2 deletions dist/vue-authenticate.es2015.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* vue-authenticate v1.3.3
* vue-authenticate v1.3.4
* https://github.com/dgrubelic/vue-authenticate
* Released under the MIT License.
*/
Expand Down Expand Up @@ -1379,7 +1379,7 @@ VueAuthenticate.prototype.authenticate = function authenticate (provider, userDa
} else {
return reject(new Error('Authentication failed'))
}
})
}).catch(function (err) { return reject(err); })
})
};

Expand Down
4 changes: 2 additions & 2 deletions dist/vue-authenticate.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* vue-authenticate v1.3.3
* vue-authenticate v1.3.4
* https://github.com/dgrubelic/vue-authenticate
* Released under the MIT License.
*/
Expand Down Expand Up @@ -1385,7 +1385,7 @@ VueAuthenticate.prototype.authenticate = function authenticate (provider, userDa
} else {
return reject(new Error('Authentication failed'))
}
})
}).catch(function (err) { return reject(err); })
})
};

Expand Down
4 changes: 2 additions & 2 deletions dist/vue-authenticate.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions example/vue-authenticate.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* vue-authenticate v1.3.3
* vue-authenticate v1.3.4
* https://github.com/dgrubelic/vue-authenticate
* Released under the MIT License.
*/
Expand Down Expand Up @@ -1385,7 +1385,7 @@ VueAuthenticate.prototype.authenticate = function authenticate (provider, userDa
} else {
return reject(new Error('Authentication failed'))
}
})
}).catch(function (err) { return reject(err); })
})
};

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vue-authenticate",
"version": "1.3.3",
"version": "1.3.4",
"description": "Authentication library for Vue.js",
"main": "dist/vue-authenticate.js",
"module": "dist/vue-authenticate.es2015.js",
Expand All @@ -25,7 +25,7 @@
},
"license": "MIT",
"dependencies": {
"vue": "^2.2.5",
"vue": "^2.5.2",
"vue-axios": "^2.0.2"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion src/authenticate.js
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ export default class VueAuthenticate {
} else {
return reject(new Error('Authentication failed'))
}
})
}).catch(err => reject(err))
})
}
}

0 comments on commit 166db40

Please sign in to comment.