rollup 0.63.0 → 0.63.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  /*
2
- Rollup.js v0.63.0
3
- Tue, 17 Jul 2018 19:45:42 GMT - commit 9c6072360da01714261d0513782365ec6d795043
2
+ Rollup.js v0.63.4
3
+ Fri, 20 Jul 2018 15:24:16 GMT - commit 738f2fc3661fad2bb3ed75c09a7d649846133d38
4
4
 
5
5
 
6
6
  https://github.com/rollup/rollup
@@ -10172,8 +10172,8 @@
10172
10172
  '^': function (left, right) { return left ^ right; },
10173
10173
  '&': function (left, right) { return left & right; },
10174
10174
  '**': function (left, right) { return Math.pow(left, right); },
10175
- in: function (left, right) { return left in right; },
10176
- instanceof: function (left, right) { return left instanceof right; }
10175
+ in: function () { return UNKNOWN_VALUE; },
10176
+ instanceof: function () { return UNKNOWN_VALUE; }
10177
10177
  };
10178
10178
  var BinaryExpression$1 = /** @class */ (function (_super) {
10179
10179
  __extends(BinaryExpression, _super);
@@ -10710,8 +10710,10 @@
10710
10710
  return _super !== null && _super.apply(this, arguments) || this;
10711
10711
  }
10712
10712
  ForInStatement$$1.prototype.bind = function () {
10713
- _super.prototype.bind.call(this);
10713
+ this.left.bind();
10714
10714
  this.left.deoptimizePath(EMPTY_PATH);
10715
+ this.right.bind();
10716
+ this.body.bind();
10715
10717
  };
10716
10718
  ForInStatement$$1.prototype.createScope = function (parentScope) {
10717
10719
  this.scope = new BlockScope(parentScope);
@@ -10744,8 +10746,10 @@
10744
10746
  return _super !== null && _super.apply(this, arguments) || this;
10745
10747
  }
10746
10748
  ForOfStatement$$1.prototype.bind = function () {
10747
- _super.prototype.bind.call(this);
10749
+ this.left.bind();
10748
10750
  this.left.deoptimizePath(EMPTY_PATH);
10751
+ this.right.bind();
10752
+ this.body.bind();
10749
10753
  };
10750
10754
  ForOfStatement$$1.prototype.createScope = function (parentScope) {
10751
10755
  this.scope = new BlockScope(parentScope);
@@ -22387,7 +22391,7 @@
22387
22391
  return outputOptions;
22388
22392
  }
22389
22393
 
22390
- var version$1 = "0.63.0";
22394
+ var version$1 = "0.63.4";
22391
22395
 
22392
22396
  exports.rollup = rollup;
22393
22397
  exports.VERSION = version$1;
package/dist/rollup.es.js CHANGED
@@ -1,6 +1,6 @@
1
1
  /*
2
- Rollup.js v0.63.0
3
- Tue, 17 Jul 2018 19:45:42 GMT - commit 9c6072360da01714261d0513782365ec6d795043
2
+ Rollup.js v0.63.4
3
+ Fri, 20 Jul 2018 15:24:16 GMT - commit 738f2fc3661fad2bb3ed75c09a7d649846133d38
4
4
 
5
5
 
6
6
  https://github.com/rollup/rollup
@@ -10127,8 +10127,8 @@ var binaryOperators = {
10127
10127
  '^': function (left, right) { return left ^ right; },
10128
10128
  '&': function (left, right) { return left & right; },
10129
10129
  '**': function (left, right) { return Math.pow(left, right); },
10130
- in: function (left, right) { return left in right; },
10131
- instanceof: function (left, right) { return left instanceof right; }
10130
+ in: function () { return UNKNOWN_VALUE; },
10131
+ instanceof: function () { return UNKNOWN_VALUE; }
10132
10132
  };
10133
10133
  var BinaryExpression$1 = /** @class */ (function (_super) {
10134
10134
  __extends(BinaryExpression, _super);
@@ -10665,8 +10665,10 @@ var ForInStatement$1 = /** @class */ (function (_super) {
10665
10665
  return _super !== null && _super.apply(this, arguments) || this;
10666
10666
  }
10667
10667
  ForInStatement$$1.prototype.bind = function () {
10668
- _super.prototype.bind.call(this);
10668
+ this.left.bind();
10669
10669
  this.left.deoptimizePath(EMPTY_PATH);
10670
+ this.right.bind();
10671
+ this.body.bind();
10670
10672
  };
10671
10673
  ForInStatement$$1.prototype.createScope = function (parentScope) {
10672
10674
  this.scope = new BlockScope(parentScope);
@@ -10699,8 +10701,10 @@ var ForOfStatement$1 = /** @class */ (function (_super) {
10699
10701
  return _super !== null && _super.apply(this, arguments) || this;
10700
10702
  }
10701
10703
  ForOfStatement$$1.prototype.bind = function () {
10702
- _super.prototype.bind.call(this);
10704
+ this.left.bind();
10703
10705
  this.left.deoptimizePath(EMPTY_PATH);
10706
+ this.right.bind();
10707
+ this.body.bind();
10704
10708
  };
10705
10709
  ForOfStatement$$1.prototype.createScope = function (parentScope) {
10706
10710
  this.scope = new BlockScope(parentScope);
@@ -26213,7 +26217,7 @@ function watch$1(configs) {
26213
26217
  return new Watcher(configs);
26214
26218
  }
26215
26219
 
26216
- var version$1 = "0.63.0";
26220
+ var version$1 = "0.63.4";
26217
26221
 
26218
26222
  export { rollup, watch$1 as watch, version$1 as VERSION };
26219
26223
  //# sourceMappingURL=rollup.es.js.map
package/dist/rollup.js CHANGED
@@ -1,6 +1,6 @@
1
1
  /*
2
- Rollup.js v0.63.0
3
- Tue, 17 Jul 2018 19:45:42 GMT - commit 9c6072360da01714261d0513782365ec6d795043
2
+ Rollup.js v0.63.4
3
+ Fri, 20 Jul 2018 15:24:16 GMT - commit 738f2fc3661fad2bb3ed75c09a7d649846133d38
4
4
 
5
5
 
6
6
  https://github.com/rollup/rollup
@@ -10134,8 +10134,8 @@ var binaryOperators = {
10134
10134
  '^': function (left, right) { return left ^ right; },
10135
10135
  '&': function (left, right) { return left & right; },
10136
10136
  '**': function (left, right) { return Math.pow(left, right); },
10137
- in: function (left, right) { return left in right; },
10138
- instanceof: function (left, right) { return left instanceof right; }
10137
+ in: function () { return UNKNOWN_VALUE; },
10138
+ instanceof: function () { return UNKNOWN_VALUE; }
10139
10139
  };
10140
10140
  var BinaryExpression$1 = /** @class */ (function (_super) {
10141
10141
  __extends(BinaryExpression, _super);
@@ -10672,8 +10672,10 @@ var ForInStatement$1 = /** @class */ (function (_super) {
10672
10672
  return _super !== null && _super.apply(this, arguments) || this;
10673
10673
  }
10674
10674
  ForInStatement$$1.prototype.bind = function () {
10675
- _super.prototype.bind.call(this);
10675
+ this.left.bind();
10676
10676
  this.left.deoptimizePath(EMPTY_PATH);
10677
+ this.right.bind();
10678
+ this.body.bind();
10677
10679
  };
10678
10680
  ForInStatement$$1.prototype.createScope = function (parentScope) {
10679
10681
  this.scope = new BlockScope(parentScope);
@@ -10706,8 +10708,10 @@ var ForOfStatement$1 = /** @class */ (function (_super) {
10706
10708
  return _super !== null && _super.apply(this, arguments) || this;
10707
10709
  }
10708
10710
  ForOfStatement$$1.prototype.bind = function () {
10709
- _super.prototype.bind.call(this);
10711
+ this.left.bind();
10710
10712
  this.left.deoptimizePath(EMPTY_PATH);
10713
+ this.right.bind();
10714
+ this.body.bind();
10711
10715
  };
10712
10716
  ForOfStatement$$1.prototype.createScope = function (parentScope) {
10713
10717
  this.scope = new BlockScope(parentScope);
@@ -26220,7 +26224,7 @@ function watch(configs) {
26220
26224
  return new Watcher(configs);
26221
26225
  }
26222
26226
 
26223
- var version$1 = "0.63.0";
26227
+ var version$1 = "0.63.4";
26224
26228
 
26225
26229
  exports.rollup = rollup;
26226
26230
  exports.watch = watch;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rollup",
3
- "version": "0.63.0",
3
+ "version": "0.63.4",
4
4
  "description": "Next-generation ES module bundler",
5
5
  "main": "dist/rollup.js",
6
6
  "module": "dist/rollup.es.js",
@@ -66,7 +66,6 @@
66
66
  "acorn-import-meta": "^0.2.1",
67
67
  "ansi-escapes": "^3.1.0",
68
68
  "buble": "^0.19.3",
69
- "chalk": "^2.4.1",
70
69
  "chokidar": "^2.0.4",
71
70
  "console-group": "^0.3.1",
72
71
  "date-time": "^2.1.0",
@@ -104,6 +103,7 @@
104
103
  "source-map-support": "^0.5.6",
105
104
  "sourcemap-codec": "^1.4.1",
106
105
  "tslint": "^5.10.0",
106
+ "turbocolor": "2.4.0",
107
107
  "typescript": "^2.9.2",
108
108
  "uglify-js": "^3.4.1",
109
109
  "url-parse": "^1.4.0"