Skip to content

Commit

Permalink
dist.
Browse files Browse the repository at this point in the history
  • Loading branch information
fahad19 committed Jun 25, 2015
1 parent 0b013a3 commit 4c9a4cf
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 20 deletions.
2 changes: 1 addition & 1 deletion bower.json
@@ -1,7 +1,7 @@
{
"name": "firenze",
"main": "dist/firenze.full.min.js",
"version": "0.1.3",
"version": "0.1.4",
"homepage": "https://github.com/fahad19/firenze",
"authors": [
"Fahad Ibnay Heylaal"
Expand Down
12 changes: 4 additions & 8 deletions dist/firenze.full.js
Expand Up @@ -12701,8 +12701,8 @@ this["firenze"] =
// ruleName: function (field, value) {
// return true;
// },
// asyncRule: function (value, field, validated) {
// return validated(true);
// asyncRule: function (value, field, done) {
// return done(true);
// },
// ruleWithOptions: function (value, field, arg1, arg2) {
// return true;
Expand Down Expand Up @@ -13235,17 +13235,13 @@ this["firenze"] =
return cb(error);
});
}, function (proceed, cb) {
_this2.collection()['delete'](_this2).then(function (res) {
return _this2.collection()['delete'](_this2).then(function (res) {
return cb(null, res);
})['catch'](function (error) {
return cb(error);
});
}, function (result, cb) {
if (!callbacks) {
return cb(null, result);
}

_this2.afterDelete().then(function () {
return _this2.afterDelete().then(function () {
return cb(null, result);
})['catch'](function (error) {
return cb(error);
Expand Down
2 changes: 1 addition & 1 deletion dist/firenze.full.min.js

Large diffs are not rendered by default.

12 changes: 4 additions & 8 deletions dist/firenze.js
Expand Up @@ -449,8 +449,8 @@ this["firenze"] =
// ruleName: function (field, value) {
// return true;
// },
// asyncRule: function (value, field, validated) {
// return validated(true);
// asyncRule: function (value, field, done) {
// return done(true);
// },
// ruleWithOptions: function (value, field, arg1, arg2) {
// return true;
Expand Down Expand Up @@ -983,17 +983,13 @@ this["firenze"] =
return cb(error);
});
}, function (proceed, cb) {
_this2.collection()['delete'](_this2).then(function (res) {
return _this2.collection()['delete'](_this2).then(function (res) {
return cb(null, res);
})['catch'](function (error) {
return cb(error);
});
}, function (result, cb) {
if (!callbacks) {
return cb(null, result);
}

_this2.afterDelete().then(function () {
return _this2.afterDelete().then(function () {
return cb(null, result);
})['catch'](function (error) {
return cb(error);
Expand Down
2 changes: 1 addition & 1 deletion dist/firenze.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "firenze",
"version": "0.1.3",
"version": "0.1.4",
"description": "ORM for relational databases.",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit 4c9a4cf

Please sign in to comment.