Skip to content

Commit f5c22ff

Browse files
author
Cache Hamm
committed
2.0.2 build and changelog
1 parent 80cd15c commit f5c22ff

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2.0.2 / 2017-07-24
2+
* Bugfix IE8 support
3+
14
2.0.1 / 2017-07-05
25
* Bugfix rule result serialization
36

dist/rule-result.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ Object.defineProperty(exports, "__esModule", {
66

77
var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
88

9-
var _lodash = require('lodash.clonedeep');
9+
var _clone = require('clone');
1010

11-
var _lodash2 = _interopRequireDefault(_lodash);
11+
var _clone2 = _interopRequireDefault(_clone);
1212

1313
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
1414

@@ -18,9 +18,9 @@ var RuleResult = function () {
1818
function RuleResult(conditions, event, priority) {
1919
_classCallCheck(this, RuleResult);
2020

21-
this.conditions = (0, _lodash2.default)(conditions);
22-
this.event = (0, _lodash2.default)(event);
23-
this.priority = (0, _lodash2.default)(priority);
21+
this.conditions = (0, _clone2.default)(conditions);
22+
this.event = (0, _clone2.default)(event);
23+
this.priority = (0, _clone2.default)(priority);
2424
this.result = null;
2525
}
2626

0 commit comments

Comments
 (0)