rollup 2.75.5 → 2.76.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 +52 -0
- package/dist/bin/rollup +18 -18
- package/dist/es/rollup.browser.js +3 -3
- package/dist/es/rollup.js +2 -2
- package/dist/es/shared/rollup.js +650 -730
- package/dist/es/shared/watch.js +3 -2
- package/dist/loadConfigFile.js +6 -6
- package/dist/rollup.browser.js +3 -3
- package/dist/rollup.browser.js.map +1 -1
- package/dist/rollup.d.ts +2 -0
- package/dist/rollup.js +2 -2
- package/dist/shared/index.js +2 -2
- package/dist/shared/loadConfigFile.js +20 -12
- package/dist/shared/mergeOptions.js +3 -2
- package/dist/shared/rollup.js +650 -730
- package/dist/shared/watch-cli.js +17 -17
- package/dist/shared/watch.js +2 -2
- package/package.json +19 -19
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.76.0
|
|
4
|
+
Fri, 08 Jul 2022 08:35:58 GMT - commit 0eb042740eb41812b9e96e0e7b6ed8aa4cab04a7
|
|
5
5
|
|
|
6
6
|
https://github.com/rollup/rollup
|
|
7
7
|
|
|
@@ -18,7 +18,7 @@ const cli = require('../bin/rollup');
|
|
|
18
18
|
const rollup = require('./rollup.js');
|
|
19
19
|
const require$$0 = require('assert');
|
|
20
20
|
const require$$0$1 = require('events');
|
|
21
|
-
const
|
|
21
|
+
const loadConfigFile_js = require('./loadConfigFile.js');
|
|
22
22
|
const child_process = require('child_process');
|
|
23
23
|
require('util');
|
|
24
24
|
require('stream');
|
|
@@ -347,12 +347,12 @@ function getResetScreen(configs, allowClearScreen) {
|
|
|
347
347
|
}
|
|
348
348
|
}
|
|
349
349
|
if (clearScreen) {
|
|
350
|
-
return (heading) =>
|
|
350
|
+
return (heading) => loadConfigFile_js.stderr(CLEAR_SCREEN + heading);
|
|
351
351
|
}
|
|
352
352
|
let firstRun = true;
|
|
353
353
|
return (heading) => {
|
|
354
354
|
if (firstRun) {
|
|
355
|
-
|
|
355
|
+
loadConfigFile_js.stderr(heading);
|
|
356
356
|
firstRun = false;
|
|
357
357
|
}
|
|
358
358
|
};
|
|
@@ -371,7 +371,7 @@ function createWatchHooks(command) {
|
|
|
371
371
|
if (watchHooks[hook]) {
|
|
372
372
|
const cmd = watchHooks[hook];
|
|
373
373
|
if (!command.silent) {
|
|
374
|
-
|
|
374
|
+
loadConfigFile_js.stderr(loadConfigFile_js.cyan(`watch.${hook} ${loadConfigFile_js.bold(`$ ${cmd}`)}`));
|
|
375
375
|
}
|
|
376
376
|
try {
|
|
377
377
|
// !! important - use stderr for all writes from execSync
|
|
@@ -379,7 +379,7 @@ function createWatchHooks(command) {
|
|
|
379
379
|
child_process.execSync(cmd, { stdio: command.silent ? 'ignore' : stdio });
|
|
380
380
|
}
|
|
381
381
|
catch (e) {
|
|
382
|
-
|
|
382
|
+
loadConfigFile_js.stderr(e.message);
|
|
383
383
|
}
|
|
384
384
|
}
|
|
385
385
|
};
|
|
@@ -414,10 +414,10 @@ async function watch(command) {
|
|
|
414
414
|
configFileRevision++;
|
|
415
415
|
const currentConfigFileRevision = configFileRevision;
|
|
416
416
|
if (configFileData) {
|
|
417
|
-
|
|
417
|
+
loadConfigFile_js.stderr(`\nReloading updated config...`);
|
|
418
418
|
}
|
|
419
419
|
configFileData = newConfigFileData;
|
|
420
|
-
const { options, warnings } = await
|
|
420
|
+
const { options, warnings } = await loadConfigFile_js.loadAndParseConfigFile(configFile, command);
|
|
421
421
|
if (currentConfigFileRevision !== configFileRevision) {
|
|
422
422
|
return;
|
|
423
423
|
}
|
|
@@ -427,7 +427,7 @@ async function watch(command) {
|
|
|
427
427
|
start(options, warnings);
|
|
428
428
|
}
|
|
429
429
|
catch (err) {
|
|
430
|
-
|
|
430
|
+
loadConfigFile_js.handleError(err, true);
|
|
431
431
|
}
|
|
432
432
|
}
|
|
433
433
|
}
|
|
@@ -443,13 +443,13 @@ async function watch(command) {
|
|
|
443
443
|
watcher = rollup.watch(configs);
|
|
444
444
|
}
|
|
445
445
|
catch (err) {
|
|
446
|
-
return
|
|
446
|
+
return loadConfigFile_js.handleError(err);
|
|
447
447
|
}
|
|
448
448
|
watcher.on('event', event => {
|
|
449
449
|
switch (event.code) {
|
|
450
450
|
case 'ERROR':
|
|
451
451
|
warnings.flush();
|
|
452
|
-
|
|
452
|
+
loadConfigFile_js.handleError(event.error, true);
|
|
453
453
|
runWatchHook('onError');
|
|
454
454
|
break;
|
|
455
455
|
case 'START':
|
|
@@ -457,7 +457,7 @@ async function watch(command) {
|
|
|
457
457
|
if (!resetScreen) {
|
|
458
458
|
resetScreen = getResetScreen(configs, isTTY);
|
|
459
459
|
}
|
|
460
|
-
resetScreen(
|
|
460
|
+
resetScreen(loadConfigFile_js.underline(`rollup v${rollup.version}`));
|
|
461
461
|
}
|
|
462
462
|
runWatchHook('onStart');
|
|
463
463
|
break;
|
|
@@ -469,14 +469,14 @@ async function watch(command) {
|
|
|
469
469
|
? input.join(', ')
|
|
470
470
|
: Object.values(input).join(', ');
|
|
471
471
|
}
|
|
472
|
-
|
|
472
|
+
loadConfigFile_js.stderr(loadConfigFile_js.cyan(`bundles ${loadConfigFile_js.bold(input)} → ${loadConfigFile_js.bold(event.output.map(rollup.relativeId).join(', '))}...`));
|
|
473
473
|
}
|
|
474
474
|
runWatchHook('onBundleStart');
|
|
475
475
|
break;
|
|
476
476
|
case 'BUNDLE_END':
|
|
477
477
|
warnings.flush();
|
|
478
478
|
if (!silent)
|
|
479
|
-
|
|
479
|
+
loadConfigFile_js.stderr(loadConfigFile_js.green(`created ${loadConfigFile_js.bold(event.output.map(rollup.relativeId).join(', '))} in ${loadConfigFile_js.bold(cli.ms(event.duration))}`));
|
|
480
480
|
runWatchHook('onBundleEnd');
|
|
481
481
|
if (event.result && event.result.getTimings) {
|
|
482
482
|
cli.printTimings(event.result.getTimings());
|
|
@@ -485,11 +485,11 @@ async function watch(command) {
|
|
|
485
485
|
case 'END':
|
|
486
486
|
runWatchHook('onEnd');
|
|
487
487
|
if (!silent && isTTY) {
|
|
488
|
-
|
|
488
|
+
loadConfigFile_js.stderr(`\n[${dateTime()}] waiting for changes...`);
|
|
489
489
|
}
|
|
490
490
|
}
|
|
491
491
|
if ('result' in event && event.result) {
|
|
492
|
-
event.result.close().catch(error =>
|
|
492
|
+
event.result.close().catch(error => loadConfigFile_js.handleError(error, true));
|
|
493
493
|
}
|
|
494
494
|
});
|
|
495
495
|
}
|
package/dist/shared/watch.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rollup",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.76.0",
|
|
4
4
|
"description": "Next-generation ES module bundler",
|
|
5
5
|
"main": "dist/rollup.js",
|
|
6
6
|
"module": "dist/es/rollup.js",
|
|
@@ -59,32 +59,32 @@
|
|
|
59
59
|
"devDependencies": {
|
|
60
60
|
"@rollup/plugin-alias": "^3.1.9",
|
|
61
61
|
"@rollup/plugin-buble": "^0.21.3",
|
|
62
|
-
"@rollup/plugin-commonjs": "^22.0.
|
|
62
|
+
"@rollup/plugin-commonjs": "^22.0.1",
|
|
63
63
|
"@rollup/plugin-json": "^4.1.0",
|
|
64
|
-
"@rollup/plugin-node-resolve": "^13.
|
|
64
|
+
"@rollup/plugin-node-resolve": "^13.3.0",
|
|
65
65
|
"@rollup/plugin-replace": "^4.0.0",
|
|
66
|
-
"@rollup/plugin-typescript": "^8.3.
|
|
66
|
+
"@rollup/plugin-typescript": "^8.3.3",
|
|
67
67
|
"@rollup/pluginutils": "^4.2.1",
|
|
68
|
-
"@types/estree": "0.0.
|
|
68
|
+
"@types/estree": "0.0.52",
|
|
69
69
|
"@types/node": "^10.17.60",
|
|
70
70
|
"@types/signal-exit": "^3.0.1",
|
|
71
71
|
"@types/yargs-parser": "^20.2.2",
|
|
72
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
|
73
|
-
"@typescript-eslint/parser": "^5.
|
|
72
|
+
"@typescript-eslint/eslint-plugin": "^5.30.5",
|
|
73
|
+
"@typescript-eslint/parser": "^5.30.5",
|
|
74
74
|
"acorn": "^8.7.1",
|
|
75
75
|
"acorn-jsx": "^5.3.2",
|
|
76
76
|
"acorn-walk": "^8.2.0",
|
|
77
77
|
"buble": "^0.20.0",
|
|
78
78
|
"chokidar": "^3.5.3",
|
|
79
|
-
"colorette": "^2.0.
|
|
80
|
-
"core-js": "^3.
|
|
79
|
+
"colorette": "^2.0.19",
|
|
80
|
+
"core-js": "^3.23.3",
|
|
81
81
|
"date-time": "^4.0.0",
|
|
82
|
-
"es5-shim": "^4.6.
|
|
82
|
+
"es5-shim": "^4.6.7",
|
|
83
83
|
"es6-shim": "^0.35.6",
|
|
84
|
-
"eslint": "^8.
|
|
84
|
+
"eslint": "^8.19.0",
|
|
85
85
|
"eslint-config-prettier": "^8.5.0",
|
|
86
86
|
"eslint-plugin-import": "^2.26.0",
|
|
87
|
-
"eslint-plugin-prettier": "^4.
|
|
87
|
+
"eslint-plugin-prettier": "^4.2.1",
|
|
88
88
|
"execa": "^5.1.1",
|
|
89
89
|
"fixturify": "^2.1.1",
|
|
90
90
|
"fs-extra": "^10.1.0",
|
|
@@ -93,27 +93,27 @@
|
|
|
93
93
|
"is-reference": "^3.0.0",
|
|
94
94
|
"lint-staged": "^10.5.4",
|
|
95
95
|
"locate-character": "^2.0.5",
|
|
96
|
-
"magic-string": "^0.26.
|
|
96
|
+
"magic-string": "^0.26.2",
|
|
97
97
|
"mocha": "^9.2.2",
|
|
98
98
|
"nyc": "^15.1.0",
|
|
99
|
-
"prettier": "^2.
|
|
99
|
+
"prettier": "^2.7.1",
|
|
100
100
|
"pretty-bytes": "^5.6.0",
|
|
101
101
|
"pretty-ms": "^7.0.1",
|
|
102
102
|
"requirejs": "^2.3.6",
|
|
103
|
-
"rollup": "^2.
|
|
104
|
-
"rollup-plugin-license": "^2.
|
|
103
|
+
"rollup": "^2.75.7",
|
|
104
|
+
"rollup-plugin-license": "^2.8.1",
|
|
105
105
|
"rollup-plugin-string": "^3.0.0",
|
|
106
106
|
"rollup-plugin-terser": "^7.0.2",
|
|
107
107
|
"rollup-plugin-thatworks": "^1.0.4",
|
|
108
108
|
"shx": "^0.3.4",
|
|
109
109
|
"signal-exit": "^3.0.7",
|
|
110
|
-
"source-map": "^0.7.
|
|
110
|
+
"source-map": "^0.7.4",
|
|
111
111
|
"source-map-support": "^0.5.21",
|
|
112
112
|
"sourcemap-codec": "^1.4.8",
|
|
113
113
|
"systemjs": "^6.12.1",
|
|
114
|
-
"terser": "^5.
|
|
114
|
+
"terser": "^5.14.1",
|
|
115
115
|
"tslib": "^2.4.0",
|
|
116
|
-
"typescript": "^4.
|
|
116
|
+
"typescript": "^4.7.4",
|
|
117
117
|
"weak-napi": "^2.0.2",
|
|
118
118
|
"yargs-parser": "^20.2.9"
|
|
119
119
|
},
|