rollup 2.53.3 → 2.56.0
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 +51 -0
- package/dist/bin/rollup +15 -8
- package/dist/es/rollup.browser.js +3 -3
- package/dist/es/rollup.js +2 -2
- package/dist/es/shared/rollup.js +183 -155
- package/dist/es/shared/watch.js +10 -6
- package/dist/loadConfigFile.js +2 -2
- package/dist/rollup.browser.js +3 -3
- package/dist/rollup.browser.js.map +1 -1
- package/dist/rollup.js +2 -2
- package/dist/shared/index.js +7 -5
- package/dist/shared/loadConfigFile.js +8 -4
- package/dist/shared/mergeOptions.js +2 -2
- package/dist/shared/rollup.js +183 -155
- package/dist/shared/watch-cli.js +3 -3
- package/dist/shared/watch.js +5 -3
- package/package.json +1 -1
package/dist/shared/watch-cli.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*
|
|
2
2
|
@license
|
|
3
|
-
Rollup.js v2.
|
|
4
|
-
|
|
3
|
+
Rollup.js v2.56.0
|
|
4
|
+
Thu, 05 Aug 2021 05:18:15 GMT - commit ffd5cad3339c8d42bff3e9ae7c6c8ef12fced50a
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
https://github.com/rollup/rollup
|
|
@@ -406,7 +406,7 @@ async function watch(command) {
|
|
|
406
406
|
case 'BUNDLE_END':
|
|
407
407
|
warnings.flush();
|
|
408
408
|
if (!silent)
|
|
409
|
-
loadConfigFile_js.stderr(loadConfigFile_js.green(`created ${loadConfigFile_js.bold(event.output.map(rollup.relativeId).join(', '))} in ${loadConfigFile_js.bold(cli.
|
|
409
|
+
loadConfigFile_js.stderr(loadConfigFile_js.green(`created ${loadConfigFile_js.bold(event.output.map(rollup.relativeId).join(', '))} in ${loadConfigFile_js.bold(cli.ms(event.duration))}`));
|
|
410
410
|
if (event.result && event.result.getTimings) {
|
|
411
411
|
cli.printTimings(event.result.getTimings());
|
|
412
412
|
}
|
package/dist/shared/watch.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*
|
|
2
2
|
@license
|
|
3
|
-
Rollup.js v2.
|
|
4
|
-
|
|
3
|
+
Rollup.js v2.56.0
|
|
4
|
+
Thu, 05 Aug 2021 05:18:15 GMT - commit ffd5cad3339c8d42bff3e9ae7c6c8ef12fced50a
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
https://github.com/rollup/rollup
|
|
@@ -500,6 +500,8 @@ micromatch.braceExpand = (pattern, options) => {
|
|
|
500
500
|
|
|
501
501
|
var micromatch_1 = micromatch;
|
|
502
502
|
|
|
503
|
+
var mm = micromatch_1;
|
|
504
|
+
|
|
503
505
|
function ensureArray(thing) {
|
|
504
506
|
if (Array.isArray(thing))
|
|
505
507
|
return thing;
|
|
@@ -520,7 +522,7 @@ const createFilter = function createFilter(include, exclude, options) {
|
|
|
520
522
|
return id instanceof RegExp
|
|
521
523
|
? id
|
|
522
524
|
: {
|
|
523
|
-
test:
|
|
525
|
+
test: mm.matcher(getMatcherString(id, resolutionBase)
|
|
524
526
|
.split(path.sep)
|
|
525
527
|
.join('/'), { dot: true })
|
|
526
528
|
};
|