rollup 2.71.0 → 2.72.1
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 +41 -0
- package/dist/bin/rollup +3 -3
- package/dist/es/rollup.browser.js +3 -3
- package/dist/es/rollup.js +2 -2
- package/dist/es/shared/rollup.js +5 -5
- package/dist/es/shared/watch.js +2 -2
- 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 +2 -0
- package/dist/rollup.js +2 -2
- package/dist/shared/index.js +2 -2
- package/dist/shared/loadConfigFile.js +2 -2
- package/dist/shared/mergeOptions.js +2 -2
- package/dist/shared/rollup.js +5 -5
- package/dist/shared/watch-cli.js +36 -2
- package/dist/shared/watch.js +2 -2
- package/package.json +4 -2
package/dist/es/rollup.js
CHANGED
package/dist/es/shared/rollup.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*
|
|
2
2
|
@license
|
|
3
|
-
Rollup.js v2.
|
|
4
|
-
Sat,
|
|
3
|
+
Rollup.js v2.72.1
|
|
4
|
+
Sat, 07 May 2022 19:04:43 GMT - commit 8c6e0f319b792ea52fe979888593b6523315ae93
|
|
5
5
|
|
|
6
6
|
https://github.com/rollup/rollup
|
|
7
7
|
|
|
@@ -14,7 +14,7 @@ import { createHash as createHash$1 } from 'crypto';
|
|
|
14
14
|
import { promises } from 'fs';
|
|
15
15
|
import { EventEmitter } from 'events';
|
|
16
16
|
|
|
17
|
-
var version$1 = "2.
|
|
17
|
+
var version$1 = "2.72.1";
|
|
18
18
|
|
|
19
19
|
var charToInteger = {};
|
|
20
20
|
var chars$1 = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=';
|
|
@@ -5543,7 +5543,7 @@ class ObjectEntity extends ExpressionEntity {
|
|
|
5543
5543
|
: this.allProperties) {
|
|
5544
5544
|
property.deoptimizePath(subPath);
|
|
5545
5545
|
}
|
|
5546
|
-
(_a = this.prototypeExpression) === null || _a === void 0 ? void 0 : _a.deoptimizePath(path.length === 1 ? [
|
|
5546
|
+
(_a = this.prototypeExpression) === null || _a === void 0 ? void 0 : _a.deoptimizePath(path.length === 1 ? [...path, UnknownKey] : path);
|
|
5547
5547
|
}
|
|
5548
5548
|
deoptimizeThisOnEventAtPath(event, path, thisParameter, recursionTracker) {
|
|
5549
5549
|
var _a;
|
|
@@ -6181,7 +6181,7 @@ class LocalVariable extends Variable {
|
|
|
6181
6181
|
if (this.isReassigned)
|
|
6182
6182
|
return true;
|
|
6183
6183
|
return (this.init &&
|
|
6184
|
-
!context.
|
|
6184
|
+
!context.assigned.trackEntityAtPathAndGetIfTracked(path, this) &&
|
|
6185
6185
|
this.init.hasEffectsWhenAssignedAtPath(path, context));
|
|
6186
6186
|
}
|
|
6187
6187
|
hasEffectsWhenCalledAtPath(path, callOptions, context) {
|
package/dist/es/shared/watch.js
CHANGED
package/dist/loadConfigFile.js
CHANGED