rollup 0.68.1 → 0.68.2

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.
package/dist/rollup.es.js CHANGED
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v0.68.1
4
- Wed, 19 Dec 2018 21:48:32 GMT - commit 55165912560f3387c56a0e8fa2df268c5b9b82f0
3
+ Rollup.js v0.68.2
4
+ Sun, 23 Dec 2018 16:35:49 GMT - commit f86019933888466d4bf4d4e06cb6ffe08b8520e1
5
5
 
6
6
 
7
7
  https://github.com/rollup/rollup
@@ -10806,7 +10806,7 @@ var BlockScope = /** @class */ (function (_super) {
10806
10806
  if (init === void 0) { init = null; }
10807
10807
  if (isHoisted === void 0) { isHoisted = false; }
10808
10808
  if (isHoisted) {
10809
- return this.parent.addDeclaration(identifier, context, init, true);
10809
+ return this.parent.addDeclaration(identifier, context, UNKNOWN_EXPRESSION, true);
10810
10810
  }
10811
10811
  else {
10812
10812
  return _super.prototype.addDeclaration.call(this, identifier, context, init, false);
@@ -21708,7 +21708,7 @@ function assignChunkColouringHashes(entryModules, manualChunkModules) {
21708
21708
  }
21709
21709
  }
21710
21710
 
21711
- var version$2 = "0.68.1";
21711
+ var version$2 = "0.68.2";
21712
21712
 
21713
21713
  function mkdirpath(path$$1) {
21714
21714
  var dir = dirname(path$$1);
package/dist/rollup.js CHANGED
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v0.68.1
4
- Wed, 19 Dec 2018 21:48:32 GMT - commit 55165912560f3387c56a0e8fa2df268c5b9b82f0
3
+ Rollup.js v0.68.2
4
+ Sun, 23 Dec 2018 16:35:49 GMT - commit f86019933888466d4bf4d4e06cb6ffe08b8520e1
5
5
 
6
6
 
7
7
  https://github.com/rollup/rollup
@@ -10813,7 +10813,7 @@ var BlockScope = /** @class */ (function (_super) {
10813
10813
  if (init === void 0) { init = null; }
10814
10814
  if (isHoisted === void 0) { isHoisted = false; }
10815
10815
  if (isHoisted) {
10816
- return this.parent.addDeclaration(identifier, context, init, true);
10816
+ return this.parent.addDeclaration(identifier, context, UNKNOWN_EXPRESSION, true);
10817
10817
  }
10818
10818
  else {
10819
10819
  return _super.prototype.addDeclaration.call(this, identifier, context, init, false);
@@ -21715,7 +21715,7 @@ function assignChunkColouringHashes(entryModules, manualChunkModules) {
21715
21715
  }
21716
21716
  }
21717
21717
 
21718
- var version$2 = "0.68.1";
21718
+ var version$2 = "0.68.2";
21719
21719
 
21720
21720
  function mkdirpath(path$$1) {
21721
21721
  var dir = path.dirname(path$$1);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rollup",
3
- "version": "0.68.1",
3
+ "version": "0.68.2",
4
4
  "description": "Next-generation ES module bundler",
5
5
  "main": "dist/rollup.js",
6
6
  "module": "dist/rollup.es.js",
@@ -16,8 +16,11 @@
16
16
  "ci:coverage": "npm run test:coverage",
17
17
  "ci:lint": "npm run lint:nofix && npm run security",
18
18
  "ci:test": "npm run test && npm run build:bootstrap && npm run test:only",
19
- "lint": "tslint --project . --fix && eslint --fix test/test.js test/*/index.js test/utils.js test/**/_config.js",
20
- "lint:nofix": "tslint --project . && eslint test/test.js test/*/index.js test/utils.js test/**/_config.js",
19
+ "lint": "npm run lint:ts -- --fix && npm run lint:js -- --fix && npm run lint:markdown",
20
+ "lint:nofix": "npm run lint:ts && npm run lint:js && npm run lint:markdown",
21
+ "lint:ts": "tslint --project .",
22
+ "lint:js": "eslint test/test.js test/*/index.js test/utils.js test/**/_config.js",
23
+ "lint:markdown": "markdownlint --config markdownlint.json docs/**/*.md",
21
24
  "perf": "npm run build:test && node --expose-gc scripts/perf.js",
22
25
  "perf:debug": "node --inspect-brk scripts/perf-debug.js",
23
26
  "perf:init": "node scripts/perf-init.js",
@@ -83,6 +86,7 @@
83
86
  "lint-staged": "^8.1.0",
84
87
  "locate-character": "^2.0.5",
85
88
  "magic-string": "^0.25.1",
89
+ "markdownlint-cli": "^0.13.0",
86
90
  "minimist": "^1.2.0",
87
91
  "mocha": "^5.2.0",
88
92
  "prettier": "^1.15.3",