rollup 0.51.8 → 0.52.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 +27 -0
- package/bin/rollup +17968 -278
- package/dist/rollup.browser.js +238 -190
- package/dist/rollup.es.js +238 -190
- package/dist/rollup.js +238 -190
- package/package.json +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rollup",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.52.3",
|
|
4
4
|
"description": "Next-generation ES6 module bundler",
|
|
5
5
|
"main": "dist/rollup.js",
|
|
6
6
|
"module": "dist/rollup.es.js",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"watch": "rollup -cw",
|
|
23
23
|
"prepublishOnly": "npm run lint && npm run test:only && npm run test:leak",
|
|
24
24
|
"prepare": "npm run build",
|
|
25
|
-
"lint": "eslint src browser test/test.js test/*/index.js test/utils test/**/_config.js"
|
|
25
|
+
"lint": "eslint src browser bin test/test.js test/*/index.js test/utils test/**/_config.js"
|
|
26
26
|
},
|
|
27
27
|
"repository": "rollup/rollup",
|
|
28
28
|
"keywords": [
|