rollup 2.60.1 → 2.60.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 +12 -0
- package/dist/bin/rollup +2 -2
- package/dist/es/rollup.browser.js +3 -3
- package/dist/es/rollup.js +2 -2
- package/dist/es/shared/rollup.js +6 -6
- 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.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 +6 -6
- package/dist/shared/watch-cli.js +2 -2
- package/dist/shared/watch.js +2 -2
- package/package.json +1 -1
package/dist/rollup.js
CHANGED
package/dist/shared/index.js
CHANGED
package/dist/shared/rollup.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*
|
|
2
2
|
@license
|
|
3
|
-
Rollup.js v2.60.
|
|
4
|
-
|
|
3
|
+
Rollup.js v2.60.2
|
|
4
|
+
Tue, 30 Nov 2021 05:36:58 GMT - commit 7c9b89fade00a4eb8ea39c6b15ef7d0e6e5739be
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
https://github.com/rollup/rollup
|
|
@@ -26,7 +26,7 @@ function _interopNamespaceDefault(e) {
|
|
|
26
26
|
return n;
|
|
27
27
|
}
|
|
28
28
|
|
|
29
|
-
var version$1 = "2.60.
|
|
29
|
+
var version$1 = "2.60.2";
|
|
30
30
|
|
|
31
31
|
function ensureArray$1(items) {
|
|
32
32
|
if (Array.isArray(items)) {
|
|
@@ -14979,11 +14979,11 @@ class Chunk {
|
|
|
14979
14979
|
continue;
|
|
14980
14980
|
}
|
|
14981
14981
|
const renderedResolution = resolution instanceof Module
|
|
14982
|
-
? `'${this.getRelativePath((facadeChunk || chunk).id, stripKnownJsExtensions)}'`
|
|
14982
|
+
? `'${escapeId(this.getRelativePath((facadeChunk || chunk).id, stripKnownJsExtensions))}'`
|
|
14983
14983
|
: resolution instanceof ExternalModule
|
|
14984
|
-
? `'${resolution.renormalizeRenderPath
|
|
14984
|
+
? `'${escapeId(resolution.renormalizeRenderPath
|
|
14985
14985
|
? this.getRelativePath(resolution.renderPath, stripKnownJsExtensions)
|
|
14986
|
-
: resolution.renderPath}'`
|
|
14986
|
+
: resolution.renderPath)}'`
|
|
14987
14987
|
: resolution;
|
|
14988
14988
|
node.renderFinalResolution(code, renderedResolution, resolution instanceof Module &&
|
|
14989
14989
|
!(facadeChunk === null || facadeChunk === void 0 ? void 0 : facadeChunk.strictFacade) &&
|
package/dist/shared/watch-cli.js
CHANGED
package/dist/shared/watch.js
CHANGED