Skip to content

Commit

Permalink
Repackaged library
Browse files Browse the repository at this point in the history
  • Loading branch information
dgrubelic committed Jun 10, 2017
1 parent b0abb4e commit c822a12
Show file tree
Hide file tree
Showing 8 changed files with 19 additions and 16 deletions.
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"eslint.enable": false
}
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vue-authenticate",
"version": "1.2.6",
"version": "1.2.7",
"main": "dist/vue-authenticate.js",
"homepage": "https://github.com/dgrubelic/vue-authenticate",
"ignore": [
Expand Down
6 changes: 3 additions & 3 deletions dist/vue-authenticate.common.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* vue-authenticate v1.2.5
* vue-authenticate v1.2.7
* https://github.com/dgrubelic/vue-authenticate
* Released under the MIT License.
*/
Expand Down Expand Up @@ -1072,8 +1072,8 @@ var VueAuthenticate = function VueAuthenticate($http, overrideOptions) {
if (this.options.bindRequestInterceptor && isFunction(this.options.bindRequestInterceptor) &&
this.options.bindResponseInterceptor && isFunction(this.options.bindResponseInterceptor)) {

this.options.bindRequestInterceptor.call(this);
this.options.bindResponseInterceptor.call(this);
this.options.bindRequestInterceptor.call(this, this);
this.options.bindResponseInterceptor.call(this, this);
} else {
// By default, request and response interceptors are for vue-resource
this.$http.interceptors.push(function (request, next) {
Expand Down
6 changes: 3 additions & 3 deletions dist/vue-authenticate.es2015.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* vue-authenticate v1.2.5
* vue-authenticate v1.2.7
* https://github.com/dgrubelic/vue-authenticate
* Released under the MIT License.
*/
Expand Down Expand Up @@ -1070,8 +1070,8 @@ var VueAuthenticate = function VueAuthenticate($http, overrideOptions) {
if (this.options.bindRequestInterceptor && isFunction(this.options.bindRequestInterceptor) &&
this.options.bindResponseInterceptor && isFunction(this.options.bindResponseInterceptor)) {

this.options.bindRequestInterceptor.call(this);
this.options.bindResponseInterceptor.call(this);
this.options.bindRequestInterceptor.call(this, this);
this.options.bindResponseInterceptor.call(this, this);
} else {
// By default, request and response interceptors are for vue-resource
this.$http.interceptors.push(function (request, next) {
Expand Down
6 changes: 3 additions & 3 deletions dist/vue-authenticate.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* vue-authenticate v1.2.5
* vue-authenticate v1.2.7
* https://github.com/dgrubelic/vue-authenticate
* Released under the MIT License.
*/
Expand Down Expand Up @@ -1076,8 +1076,8 @@ var VueAuthenticate = function VueAuthenticate($http, overrideOptions) {
if (this.options.bindRequestInterceptor && isFunction(this.options.bindRequestInterceptor) &&
this.options.bindResponseInterceptor && isFunction(this.options.bindResponseInterceptor)) {

this.options.bindRequestInterceptor.call(this);
this.options.bindResponseInterceptor.call(this);
this.options.bindRequestInterceptor.call(this, this);
this.options.bindResponseInterceptor.call(this, this);
} else {
// By default, request and response interceptors are for vue-resource
this.$http.interceptors.push(function (request, next) {
Expand Down
4 changes: 2 additions & 2 deletions dist/vue-authenticate.min.js

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions example/vue-authenticate.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* vue-authenticate v1.2.5
* vue-authenticate v1.2.7
* https://github.com/dgrubelic/vue-authenticate
* Released under the MIT License.
*/
Expand Down Expand Up @@ -1076,8 +1076,8 @@ var VueAuthenticate = function VueAuthenticate($http, overrideOptions) {
if (this.options.bindRequestInterceptor && isFunction(this.options.bindRequestInterceptor) &&
this.options.bindResponseInterceptor && isFunction(this.options.bindResponseInterceptor)) {

this.options.bindRequestInterceptor.call(this);
this.options.bindResponseInterceptor.call(this);
this.options.bindRequestInterceptor.call(this, this);
this.options.bindResponseInterceptor.call(this, this);
} else {
// By default, request and response interceptors are for vue-resource
this.$http.interceptors.push(function (request, next) {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vue-authenticate",
"version": "1.2.6",
"version": "1.2.7",
"description": "Authentication library for Vue.js",
"main": "dist/vue-authenticate.js",
"module": "dist/vue-authenticate.es2015.js",
Expand Down

0 comments on commit c822a12

Please sign in to comment.