Skip to content
This repository has been archived by the owner on Apr 19, 2019. It is now read-only.

Commit

Permalink
🔖 2.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
posva committed May 10, 2017
1 parent ace641f commit 16b91b9
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions dist/vuexfire.common.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* vuexfire v2.1.0
* vuexfire v2.1.1
* (c) 2017 Eduardo San Martin Morote
* Released under the MIT License.
*/
Expand Down Expand Up @@ -325,7 +325,7 @@ function firebaseAction (action) {
return bind({ state: state, commit: commit, key: key, source: source, options: options });
};
context.unbindFirebaseRef = function (key) { return unbind({ commit: commit, key: key }); };
action(context, payload);
return action(context, payload)
}
}

Expand Down
4 changes: 2 additions & 2 deletions dist/vuexfire.esm.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* vuexfire v2.1.0
* vuexfire v2.1.1
* (c) 2017 Eduardo San Martin Morote
* Released under the MIT License.
*/
Expand Down Expand Up @@ -321,7 +321,7 @@ function firebaseAction (action) {
return bind({ state: state, commit: commit, key: key, source: source, options: options });
};
context.unbindFirebaseRef = function (key) { return unbind({ commit: commit, key: key }); };
action(context, payload);
return action(context, payload)
}
}

Expand Down
4 changes: 2 additions & 2 deletions dist/vuexfire.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* vuexfire v2.1.0
* vuexfire v2.1.1
* (c) 2017 Eduardo San Martin Morote
* Released under the MIT License.
*/
Expand Down Expand Up @@ -327,7 +327,7 @@ function firebaseAction (action) {
return bind({ state: state, commit: commit, key: key, source: source, options: options });
};
context.unbindFirebaseRef = function (key) { return unbind({ commit: commit, key: key }); };
action(context, payload);
return action(context, payload)
}
}

Expand Down
4 changes: 2 additions & 2 deletions dist/vuexfire.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vuexfire",
"version": "2.1.0",
"version": "2.1.1",
"description": "Opinionated firebase binding for vuex",
"main": "dist/vuexfire.common.js",
"module": "dist/vuexfire.esm.js",
Expand Down

0 comments on commit 16b91b9

Please sign in to comment.