rollup 2.38.0 → 2.38.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,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v2.38.0
4
- Fri, 22 Jan 2021 16:26:00 GMT - commit 889fa5267ad93cc706fdbff2024e9c4d4f273749
3
+ Rollup.js v2.38.4
4
+ Tue, 02 Feb 2021 05:54:38 GMT - commit 991bb98fad1f3f76226bfe6243fd6cc45a19a39b
5
5
 
6
6
 
7
7
  https://github.com/rollup/rollup
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v2.38.0
4
- Fri, 22 Jan 2021 16:26:00 GMT - commit 889fa5267ad93cc706fdbff2024e9c4d4f273749
3
+ Rollup.js v2.38.4
4
+ Tue, 02 Feb 2021 05:54:38 GMT - commit 991bb98fad1f3f76226bfe6243fd6cc45a19a39b
5
5
 
6
6
 
7
7
  https://github.com/rollup/rollup
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rollup",
3
- "version": "2.38.0",
3
+ "version": "2.38.4",
4
4
  "description": "Next-generation ES module bundler",
5
5
  "main": "dist/rollup.js",
6
6
  "module": "dist/es/rollup.js",
@@ -10,34 +10,33 @@
10
10
  },
11
11
  "scripts": {
12
12
  "build": "shx rm -rf dist && git rev-parse HEAD > .commithash && rollup -c && shx cp src/rollup/types.d.ts dist/rollup.d.ts && shx chmod a+x dist/bin/rollup",
13
- "build:test": "shx rm -rf dist && rollup -c --configTest && shx cp src/rollup/types.d.ts dist/rollup.d.ts && shx chmod a+x dist/bin/rollup",
13
+ "build:cjs": "shx rm -rf dist && rollup -c --configTest && shx cp src/rollup/types.d.ts dist/rollup.d.ts && shx chmod a+x dist/bin/rollup",
14
14
  "build:bootstrap": "dist/bin/rollup -c && shx cp src/rollup/types.d.ts dist/rollup.d.ts && shx chmod a+x dist/bin/rollup",
15
15
  "ci:lint": "npm run lint:nofix",
16
- "ci:test": "npm run build:test && npm run build:bootstrap && npm run test:all",
17
- "ci:test:only": "npm run build:test && npm run build:bootstrap && npm run test:only",
18
- "ci:coverage": "npm run build:test && nyc --reporter lcovonly mocha && codecov",
16
+ "ci:test": "npm run build:cjs && npm run build:bootstrap && npm run test:all",
17
+ "ci:test:only": "npm run build:cjs && npm run build:bootstrap && npm run test:only",
18
+ "ci:coverage": "npm run build:cjs && nyc --reporter lcovonly mocha && codecov",
19
19
  "lint": "npm run lint:ts -- --fix && npm run lint:js -- --fix && npm run lint:markdown",
20
20
  "lint:nofix": "npm run lint:ts && npm run lint:js && npm run lint:markdown",
21
21
  "lint:ts": "tslint --project .",
22
22
  "lint:js": "eslint test/test.js test/*/index.js test/utils.js test/**/_config.js",
23
23
  "lint:markdown": "markdownlint --config markdownlint.json docs/**/*.md",
24
- "perf": "npm run build:test && node --expose-gc scripts/perf.js",
24
+ "perf": "npm run build:cjs && node --expose-gc scripts/perf.js",
25
25
  "perf:debug": "node --inspect-brk scripts/perf-debug.js",
26
26
  "perf:init": "node scripts/perf-init.js",
27
- "prepare": "npm run build",
28
- "prepublishOnly": "npm ci && npm run lint:nofix && npm run security && npm run build:bootstrap && npm run test:all",
29
- "pretest": "npm run build:test",
30
- "pretest:coverage": "npm run build:test && shx rm -rf coverage/*",
31
- "pretest:typescript": "shx rm -rf test/typescript/dist && shx cp -r dist test/typescript/",
32
- "security": "# npm audit # deactivated until there is a solution for the lodash issue",
33
- "test": "npm run test:all",
34
- "test:all": "npm run test:only && npm run test:typescript && npm run test:leak && npm run test:package",
35
- "test:coverage": "nyc --reporter html mocha",
27
+ "prepare": "npm run build:cjs && npm run build:bootstrap",
28
+ "security": "npm audit",
29
+ "test": "npm run build && npm run test:all",
30
+ "test:cjs": "npm run build:cjs && npm run test:only",
31
+ "test:quick": "mocha -b test/test.js",
32
+ "test:all": "npm run test:only && npm run test:browser && npm run test:typescript && npm run test:leak && npm run test:package",
33
+ "test:coverage": "npm run build:cjs && shx rm -rf coverage/* && nyc --reporter html mocha test/test.js",
34
+ "test:coverage:browser": "npm run build && shx rm -rf coverage/* && nyc mocha test/browser/index.js",
36
35
  "test:leak": "node --expose-gc test/leak/index.js",
37
36
  "test:package": "node scripts/test-package.js",
38
- "test:only": "mocha",
39
- "test:quick": "mocha -b",
40
- "test:typescript": "tsc --noEmit -p test/typescript && tsc --noEmit",
37
+ "test:only": "mocha test/test.js",
38
+ "test:typescript": "shx rm -rf test/typescript/dist && shx cp -r dist test/typescript/ && tsc --noEmit -p test/typescript && tsc --noEmit",
39
+ "test:browser": "mocha test/browser/index.js",
41
40
  "watch": "rollup -cw"
42
41
  },
43
42
  "repository": "rollup/rollup",
@@ -55,7 +54,7 @@
55
54
  },
56
55
  "homepage": "https://rollupjs.org/",
57
56
  "optionalDependencies": {
58
- "fsevents": "~2.1.2"
57
+ "fsevents": "~2.3.1"
59
58
  },
60
59
  "devDependencies": {
61
60
  "@rollup/plugin-alias": "^3.1.1",
@@ -75,7 +74,7 @@
75
74
  "acorn-static-class-features": "^0.2.4",
76
75
  "acorn-walk": "^8.0.1",
77
76
  "buble": "^0.20.0",
78
- "chokidar": "^3.4.3",
77
+ "chokidar": "^3.5.1",
79
78
  "codecov": "^3.8.1",
80
79
  "colorette": "^1.2.1",
81
80
  "core-js": "^3.8.2",