rollup 2.68.0 → 2.69.2
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 +50 -0
- package/dist/bin/rollup +5 -11
- package/dist/es/rollup.browser.js +3 -3
- package/dist/es/rollup.js +2 -2
- package/dist/es/shared/rollup.js +213 -182
- package/dist/es/shared/watch.js +3 -3
- package/dist/loadConfigFile.js +2 -2
- package/dist/rollup.browser.js +3 -3
- package/dist/rollup.browser.js.map +1 -1
- package/dist/rollup.d.ts +3 -1
- package/dist/rollup.js +3 -3
- package/dist/shared/index.js +2 -2
- package/dist/shared/loadConfigFile.js +12 -15
- package/dist/shared/mergeOptions.js +2 -2
- package/dist/shared/rollup.js +235 -204
- package/dist/shared/watch-cli.js +4 -2
- package/dist/shared/watch.js +5 -3
- package/package.json +15 -15
package/dist/es/shared/watch.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*
|
|
2
2
|
@license
|
|
3
|
-
Rollup.js v2.
|
|
4
|
-
|
|
3
|
+
Rollup.js v2.69.2
|
|
4
|
+
Sun, 06 Mar 2022 06:43:03 GMT - commit 68817534499a6a1392c465d7fe92a1ef6804ad45
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
https://github.com/rollup/rollup
|
|
@@ -4839,7 +4839,7 @@ class Watcher {
|
|
|
4839
4839
|
clearTimeout(this.buildTimeout);
|
|
4840
4840
|
this.buildTimeout = setTimeout(() => {
|
|
4841
4841
|
this.buildTimeout = null;
|
|
4842
|
-
for (const [id, event] of this.invalidatedIds
|
|
4842
|
+
for (const [id, event] of this.invalidatedIds) {
|
|
4843
4843
|
this.emitter.emit('change', id, { event });
|
|
4844
4844
|
}
|
|
4845
4845
|
this.invalidatedIds.clear();
|
package/dist/loadConfigFile.js
CHANGED