rollup 0.55.4 → 0.55.5
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 +3 -0
- package/bin/rollup +1 -1
- package/dist/rollup.browser.js +3 -3
- package/dist/rollup.es.js +3 -3
- package/dist/rollup.js +3 -3
- package/package.json +3 -12
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
# rollup changelog
|
|
2
2
|
|
|
3
|
+
## 0.55.5
|
|
4
|
+
* Remove OpenCollective dependency ([#1915](https://github.com/rollup/rollup/pull/1915))
|
|
5
|
+
|
|
3
6
|
## 0.55.4
|
|
4
7
|
* Improve name deconflicting of external variables ([#1930](https://github.com/rollup/rollup/pull/1930))
|
|
5
8
|
* Improve re-export handling ([#1947](https://github.com/rollup/rollup/pull/1947))
|
package/bin/rollup
CHANGED
|
@@ -250,7 +250,7 @@ function isNumber (x) {
|
|
|
250
250
|
|
|
251
251
|
var help = "rollup version __VERSION__\n=====================================\n\nUsage: rollup [options] <entry file>\n\nBasic options:\n\n-v, --version Show version number\n-h, --help Show this help message\n-c, --config Use this config file (if argument is used but value\n is unspecified, defaults to rollup.config.js)\n-w, --watch Watch files in bundle and rebuild on changes\n-i, --input Input (alternative to <entry file>)\n-o, --output.file <output> Output (if absent, prints to stdout)\n-f, --output.format [es] Type of output (amd, cjs, es, iife, umd)\n-e, --external Comma-separate list of module IDs to exclude\n-g, --globals Comma-separate list of `module ID:Global` pairs\n Any module IDs defined here are added to external\n-n, --name Name for UMD export\n-m, --sourcemap Generate sourcemap (`-m inline` for inline map)\n-l, --legacy Support IE8\n--amd.id ID for AMD module (default is anonymous)\n--amd.define Function to use in place of `define`\n--no-strict Don't emit a `\"use strict\";` in the generated modules.\n--no-indent Don't indent result\n--environment <values> Settings passed to config file (see example)\n--no-conflict Generate a noConflict method for UMD globals\n--no-treeshake Disable tree-shaking\n--silent Don't print warnings\n--intro Content to insert at top of bundle (inside wrapper)\n--outro Content to insert at end of bundle (inside wrapper)\n--banner Content to insert at top of bundle (outside wrapper)\n--footer Content to insert at end of bundle (outside wrapper)\n--interop Include interop block (true by default)\n\nExamples:\n\n# use settings in config file\nrollup -c\n\n# in config file, process.env.INCLUDE_DEPS === 'true'\n# and process.env.BUILD === 'production'\nrollup -c --environment INCLUDE_DEPS,BUILD:production\n\n# create CommonJS bundle.js from src/main.js\nrollup --format=cjs --output=bundle.js -- src/main.js\n\n# create self-executing IIFE using `window.jQuery`\n# and `window._` as external globals\nrollup -f iife --globals jquery:jQuery,lodash:_ \\\n -i src/app.js -o build/app.js -m build/app.js.map\n\nNotes:\n\n* When piping to stdout, only inline sourcemaps are permitted\n\nFor more information visit https://rollupjs.org\n";
|
|
252
252
|
|
|
253
|
-
var version = "0.55.
|
|
253
|
+
var version = "0.55.5";
|
|
254
254
|
|
|
255
255
|
var modules = {};
|
|
256
256
|
|
package/dist/rollup.browser.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*
|
|
2
|
-
Rollup.js v0.55.
|
|
3
|
-
|
|
2
|
+
Rollup.js v0.55.5
|
|
3
|
+
Sat Feb 10 2018 08:50:44 GMT+0100 (CET) - commit 82fe34dfe39d6c2aea9ca32444ea4a68e3afe814
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
https://github.com/rollup/rollup
|
|
@@ -19923,7 +19923,7 @@ function getAndCheckOutputOptions(inputOptions, rawOutputOptions) {
|
|
|
19923
19923
|
return outputOptions;
|
|
19924
19924
|
}
|
|
19925
19925
|
|
|
19926
|
-
var version$1 = "0.55.
|
|
19926
|
+
var version$1 = "0.55.5";
|
|
19927
19927
|
|
|
19928
19928
|
exports.rollup = rollup;
|
|
19929
19929
|
exports.VERSION = version$1;
|
package/dist/rollup.es.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*
|
|
2
|
-
Rollup.js v0.55.
|
|
3
|
-
|
|
2
|
+
Rollup.js v0.55.5
|
|
3
|
+
Sat Feb 10 2018 08:50:44 GMT+0100 (CET) - commit 82fe34dfe39d6c2aea9ca32444ea4a68e3afe814
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
https://github.com/rollup/rollup
|
|
@@ -23656,7 +23656,7 @@ function watch$1(configs) {
|
|
|
23656
23656
|
return new Watcher(configs);
|
|
23657
23657
|
}
|
|
23658
23658
|
|
|
23659
|
-
var version$1 = "0.55.
|
|
23659
|
+
var version$1 = "0.55.5";
|
|
23660
23660
|
|
|
23661
23661
|
/// <reference path="../typings/package.json.d.ts" />
|
|
23662
23662
|
|
package/dist/rollup.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*
|
|
2
|
-
Rollup.js v0.55.
|
|
3
|
-
|
|
2
|
+
Rollup.js v0.55.5
|
|
3
|
+
Sat Feb 10 2018 08:50:44 GMT+0100 (CET) - commit 82fe34dfe39d6c2aea9ca32444ea4a68e3afe814
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
https://github.com/rollup/rollup
|
|
@@ -23663,7 +23663,7 @@ function watch$1(configs) {
|
|
|
23663
23663
|
return new Watcher(configs);
|
|
23664
23664
|
}
|
|
23665
23665
|
|
|
23666
|
-
var version$1 = "0.55.
|
|
23666
|
+
var version$1 = "0.55.5";
|
|
23667
23667
|
|
|
23668
23668
|
/// <reference path="../typings/package.json.d.ts" />
|
|
23669
23669
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rollup",
|
|
3
|
-
"version": "0.55.
|
|
3
|
+
"version": "0.55.5",
|
|
4
4
|
"description": "Next-generation ES6 module bundler",
|
|
5
5
|
"main": "dist/rollup.js",
|
|
6
6
|
"module": "dist/rollup.es.js",
|
|
@@ -26,8 +26,7 @@
|
|
|
26
26
|
"watch": "rollup -cw",
|
|
27
27
|
"prepublishOnly": "npm run lint && npm run test && npm run test:leak",
|
|
28
28
|
"prepare": "npm run build",
|
|
29
|
-
"lint": "eslint src browser bin test/test.js test/*/index.js test/utils test/**/_config.js"
|
|
30
|
-
"postinstall": "opencollective postinstall"
|
|
29
|
+
"lint": "eslint src browser bin test/test.js test/*/index.js test/utils test/**/_config.js"
|
|
31
30
|
},
|
|
32
31
|
"repository": "rollup/rollup",
|
|
33
32
|
"keywords": [
|
|
@@ -102,13 +101,5 @@
|
|
|
102
101
|
"typings/package.json.d.ts",
|
|
103
102
|
"bin/rollup",
|
|
104
103
|
"README.md"
|
|
105
|
-
]
|
|
106
|
-
"dependencies": {
|
|
107
|
-
"opencollective": "^1.0.3"
|
|
108
|
-
},
|
|
109
|
-
"collective": {
|
|
110
|
-
"type": "opencollective",
|
|
111
|
-
"url": "https://opencollective.com/rollup",
|
|
112
|
-
"logo": "https://opencollective.com/rollup/logo.txt"
|
|
113
|
-
}
|
|
104
|
+
]
|
|
114
105
|
}
|