rollup 2.29.0 → 2.32.1
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 +44 -0
- package/dist/bin/rollup +3 -3
- package/dist/es/rollup.browser.js +3 -3
- package/dist/es/rollup.js +2 -2
- package/dist/es/shared/rollup.js +183 -146
- package/dist/es/shared/watch.js +2 -2
- package/dist/loadConfigFile.js +2 -2
- package/dist/rollup.browser.js +3 -3
- package/dist/rollup.d.ts +8 -1
- package/dist/rollup.js +2 -2
- package/dist/shared/index.js +2 -2
- package/dist/shared/loadConfigFile.js +6 -4
- package/dist/shared/mergeOptions.js +2 -2
- package/dist/shared/rollup.js +183 -146
- package/dist/shared/watch-cli.js +2 -2
- package/dist/shared/watch.js +2 -2
- package/package.json +5 -7
package/dist/shared/watch-cli.js
CHANGED
package/dist/shared/watch.js
CHANGED
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rollup",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.32.1",
|
|
4
4
|
"description": "Next-generation ES module bundler",
|
|
5
5
|
"main": "dist/rollup.js",
|
|
6
6
|
"module": "dist/es/rollup.js",
|
|
7
7
|
"typings": "dist/rollup.d.ts",
|
|
8
8
|
"bin": {
|
|
9
|
-
"rollup": "
|
|
9
|
+
"rollup": "dist/bin/rollup"
|
|
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",
|
|
@@ -35,11 +35,6 @@
|
|
|
35
35
|
"test:coverage": "nyc --reporter html mocha",
|
|
36
36
|
"test:leak": "cross-os test:leak:os",
|
|
37
37
|
"test:package": "node scripts/test-package.js",
|
|
38
|
-
"test:leak:os": {
|
|
39
|
-
"darwin": "npm run test:leak:nix",
|
|
40
|
-
"linux": "npm run test:leak:nix",
|
|
41
|
-
"win32": "echo 'Skipping test:leak on Windows'"
|
|
42
|
-
},
|
|
43
38
|
"test:leak:nix": "npm i --silent --no-save weak@1 && node --expose-gc test/leak/index.js",
|
|
44
39
|
"test:only": "mocha",
|
|
45
40
|
"test:quick": "mocha -b",
|
|
@@ -148,5 +143,8 @@
|
|
|
148
143
|
"default": "./dist/es/rollup.browser.js"
|
|
149
144
|
},
|
|
150
145
|
"./dist/": "./dist/"
|
|
146
|
+
},
|
|
147
|
+
"dependencies": {
|
|
148
|
+
"fsevents": "~2.1.2"
|
|
151
149
|
}
|
|
152
150
|
}
|