Skip to content

Commit

Permalink
Bumped version to 2.3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
fabiospampinato committed Sep 8, 2018
1 parent 923a50f commit d8bec9e
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 11 deletions.
2 changes: 1 addition & 1 deletion dist/cash.esm.js
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ fn.add = function (selector, context) {
return cash(unique(this.get().concat(cash(selector, context).get())));
}; // @optional ./camel_case.js
// @optional ./each.js
// @optional ./export_window.js
// @optional ./export.js
// @optional ./extend.js
// @optional ./find.js
// @optional ./get_compare_function.js
Expand Down
11 changes: 9 additions & 2 deletions dist/cash.js
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,14 @@ fn.removeProp = function (prop) {
// @require ./variables.js


win.cash = win.$ = cash; // @require ./cash.js
if (typeof exports !== 'undefined') {
// Node.js
module.exports = cash;
} else {
// Browser
win.cash = win.$ = cash;
} // @require ./cash.js


function extend(target) {
if (target === void 0) {
Expand Down Expand Up @@ -382,7 +389,7 @@ fn.add = function (selector, context) {
return cash(unique(this.get().concat(cash(selector, context).get())));
}; // @optional ./camel_case.js
// @optional ./each.js
// @optional ./export_window.js
// @optional ./export.js
// @optional ./extend.js
// @optional ./find.js
// @optional ./get_compare_function.js
Expand Down
13 changes: 7 additions & 6 deletions dist/cash.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-lock.json

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,7 +1,7 @@
{
"name": "cash-dom",
"description": "An absurdly small jQuery alternative for modern browsers.",
"version": "2.3.4",
"version": "2.3.5",
"license": "MIT",
"main": "./dist/cash.js",
"module": "./dist/cash.esm.js",
Expand Down

0 comments on commit d8bec9e

Please sign in to comment.