rollup 0.48.2 → 0.49.3
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/CHANGELOG.md +21 -1
- package/bin/rollup +394 -25
- package/dist/rollup.browser.js +2523 -2835
- package/dist/rollup.es.js +2728 -3048
- package/dist/rollup.js +2728 -3048
- package/package.json +8 -10
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rollup",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.49.3",
|
|
4
4
|
"description": "Next-generation ES6 module bundler",
|
|
5
5
|
"main": "dist/rollup.js",
|
|
6
6
|
"module": "dist/rollup.es.js",
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"rollup": "./bin/rollup"
|
|
10
10
|
},
|
|
11
11
|
"scripts": {
|
|
12
|
-
"pretest": "npm run build
|
|
12
|
+
"pretest": "npm run build",
|
|
13
13
|
"test": "mocha",
|
|
14
14
|
"test:leak": "node --expose-gc test/leak/index.js",
|
|
15
15
|
"test:quick": "rollup -c && mocha",
|
|
@@ -17,13 +17,9 @@
|
|
|
17
17
|
"test-coverage": "rm -rf coverage/* && istanbul cover --report json node_modules/.bin/_mocha -- -u exports -R spec test/test.js",
|
|
18
18
|
"posttest-coverage": "remap-istanbul -i coverage/coverage-final.json -o coverage/coverage-remapped.json -b dist && remap-istanbul -i coverage/coverage-final.json -o coverage/coverage-remapped.lcov -t lcovonly -b dist && remap-istanbul -i coverage/coverage-final.json -o coverage/coverage-remapped -t html -b dist",
|
|
19
19
|
"ci": "npm run test-coverage && codecov < coverage/coverage-remapped.lcov",
|
|
20
|
-
"build": "git rev-parse HEAD > .commithash && rollup -c",
|
|
21
|
-
"
|
|
22
|
-
"
|
|
23
|
-
"watch": "rollup -c -w",
|
|
24
|
-
"watch:browser": "rollup -c rollup.config.browser.js -w",
|
|
25
|
-
"watch:cli": "rollup -c rollup.config.cli.js -w",
|
|
26
|
-
"prepublish": "npm run lint && npm test && npm run test:leak && npm run build:browser",
|
|
20
|
+
"build": "git rev-parse HEAD > .commithash && rollup -c && chmod a+x bin/rollup",
|
|
21
|
+
"watch": "rollup -cw",
|
|
22
|
+
"prepublish": "npm run lint && npm test && npm run test:leak",
|
|
27
23
|
"lint": "eslint src browser test/test.js test/*/index.js test/utils test/**/_config.js"
|
|
28
24
|
},
|
|
29
25
|
"repository": "rollup/rollup",
|
|
@@ -46,6 +42,7 @@
|
|
|
46
42
|
"homepage": "https://github.com/rollup/rollup",
|
|
47
43
|
"devDependencies": {
|
|
48
44
|
"acorn": "^5.1.1",
|
|
45
|
+
"ansi-escapes": "^2.0.0",
|
|
49
46
|
"buble": "^0.15.1",
|
|
50
47
|
"chalk": "^2.1.0",
|
|
51
48
|
"codecov.io": "^0.1.6",
|
|
@@ -61,7 +58,7 @@
|
|
|
61
58
|
"pretty-ms": "^3.0.0",
|
|
62
59
|
"remap-istanbul": "^0.9.5",
|
|
63
60
|
"require-relative": "^0.8.7",
|
|
64
|
-
"rollup": "^0.
|
|
61
|
+
"rollup": "^0.48.0",
|
|
65
62
|
"rollup-plugin-buble": "^0.15.0",
|
|
66
63
|
"rollup-plugin-commonjs": "^8.0.2",
|
|
67
64
|
"rollup-plugin-json": "^2.3.0",
|
|
@@ -71,6 +68,7 @@
|
|
|
71
68
|
"rollup-pluginutils": "^2.0.1",
|
|
72
69
|
"rollup-watch": "^4.3.1",
|
|
73
70
|
"sander": "^0.6.0",
|
|
71
|
+
"signal-exit": "^3.0.2",
|
|
74
72
|
"source-map": "^0.5.6",
|
|
75
73
|
"source-map-support": "^0.4.15",
|
|
76
74
|
"sourcemap-codec": "^1.3.0",
|