Skip to content

Commit

Permalink
2.1.0: Publish dist updates of 2.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Cache Hamm committed Feb 20, 2018
1 parent f31eb35 commit 730fc2f
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 10 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
2.1.0 / 2018-02-19
* Publish dist updates for 2.0.3

2.0.3 / 2018-01-29
* Add factResult and result to the JSON generated for Condition (@bjacobso)

Expand Down
6 changes: 6 additions & 0 deletions dist/condition.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,12 @@ var Condition = function () {
props.operator = this.operator;
props.value = this.value;
props.fact = this.fact;
if (this.factResult !== undefined) {
props.factResult = this.factResult;
}
if (this.result !== undefined) {
props.result = this.result;
}
if (this.params) {
props.params = this.params;
}
Expand Down
14 changes: 4 additions & 10 deletions dist/generator-runtime.js
Original file line number Diff line number Diff line change
Expand Up @@ -190,10 +190,6 @@
}
}

if (typeof global.process === "object" && global.process.domain) {
invoke = global.process.domain.bind(invoke);
}

var previousPromise;

function enqueue(method, arg) {
Expand Down Expand Up @@ -727,10 +723,8 @@
}
};
})(
// Among the various tricks for obtaining a reference to the global
// object, this seems to be the most reliable technique that does not
// use indirect eval (which violates Content Security Policy).
typeof global === "object" ? global :
typeof window === "object" ? window :
typeof self === "object" ? self : this
// In sloppy mode, unbound `this` refers to the global object, fallback to
// Function constructor if we're in global strict mode. That is sadly a form
// of indirect eval which violates Content Security Policy.
(function() { return this })() || Function("return this")()
);

0 comments on commit 730fc2f

Please sign in to comment.