rollup 4.53.0 → 4.53.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/dist/bin/rollup +2 -2
- package/dist/es/getLogFilter.js +2 -2
- package/dist/es/parseAst.js +2 -2
- package/dist/es/rollup.js +2 -2
- package/dist/es/shared/node-entry.js +4 -4
- package/dist/es/shared/parseAst.js +3 -3
- package/dist/es/shared/watch.js +2 -2
- package/dist/getLogFilter.js +2 -2
- package/dist/loadConfigFile.js +2 -2
- package/dist/parseAst.js +2 -2
- package/dist/rollup.js +2 -2
- package/dist/shared/fsevents-importer.js +2 -2
- package/dist/shared/index.js +2 -2
- package/dist/shared/loadConfigFile.js +2 -2
- package/dist/shared/parseAst.js +3 -3
- package/dist/shared/rollup.js +4 -4
- package/dist/shared/watch-cli.js +2 -2
- package/dist/shared/watch.js +2 -2
- package/package.json +25 -26
package/dist/bin/rollup
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
/*
|
|
3
3
|
@license
|
|
4
|
-
Rollup.js v4.53.
|
|
5
|
-
|
|
4
|
+
Rollup.js v4.53.2
|
|
5
|
+
Mon, 10 Nov 2025 08:56:08 GMT - commit d8b0150971681d9efa4f173de5edd2c79a6e03d9
|
|
6
6
|
|
|
7
7
|
https://github.com/rollup/rollup
|
|
8
8
|
|
package/dist/es/getLogFilter.js
CHANGED
package/dist/es/parseAst.js
CHANGED
package/dist/es/rollup.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*
|
|
2
2
|
@license
|
|
3
|
-
Rollup.js v4.53.
|
|
4
|
-
|
|
3
|
+
Rollup.js v4.53.2
|
|
4
|
+
Mon, 10 Nov 2025 08:56:08 GMT - commit d8b0150971681d9efa4f173de5edd2c79a6e03d9
|
|
5
5
|
|
|
6
6
|
https://github.com/rollup/rollup
|
|
7
7
|
|
|
@@ -27,7 +27,7 @@ function _mergeNamespaces(n, m) {
|
|
|
27
27
|
return Object.defineProperty(n, Symbol.toStringTag, { value: 'Module' });
|
|
28
28
|
}
|
|
29
29
|
|
|
30
|
-
var version = "4.53.
|
|
30
|
+
var version = "4.53.2";
|
|
31
31
|
|
|
32
32
|
// src/vlq.ts
|
|
33
33
|
var comma = ",".charCodeAt(0);
|
|
@@ -16267,7 +16267,7 @@ const bufferParsers = [
|
|
|
16267
16267
|
const flags = buffer[position];
|
|
16268
16268
|
node.tail = (flags & 1) === 1;
|
|
16269
16269
|
const cookedPosition = buffer[position + 1];
|
|
16270
|
-
const cooked = cookedPosition === 0 ?
|
|
16270
|
+
const cooked = cookedPosition === 0 ? null : buffer.convertString(cookedPosition);
|
|
16271
16271
|
const raw = buffer.convertString(buffer[position + 2]);
|
|
16272
16272
|
node.value = { cooked, raw };
|
|
16273
16273
|
},
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*
|
|
2
2
|
@license
|
|
3
|
-
Rollup.js v4.53.
|
|
4
|
-
|
|
3
|
+
Rollup.js v4.53.2
|
|
4
|
+
Mon, 10 Nov 2025 08:56:08 GMT - commit d8b0150971681d9efa4f173de5edd2c79a6e03d9
|
|
5
5
|
|
|
6
6
|
https://github.com/rollup/rollup
|
|
7
7
|
|
|
@@ -1930,7 +1930,7 @@ const nodeConverters = [
|
|
|
1930
1930
|
function templateElement(position, buffer) {
|
|
1931
1931
|
const flags = buffer[position + 2];
|
|
1932
1932
|
const cookedPosition = buffer[position + 3];
|
|
1933
|
-
const cooked = cookedPosition === 0 ?
|
|
1933
|
+
const cooked = cookedPosition === 0 ? null : buffer.convertString(cookedPosition);
|
|
1934
1934
|
const raw = buffer.convertString(buffer[position + 4]);
|
|
1935
1935
|
return {
|
|
1936
1936
|
type: 'TemplateElement',
|
package/dist/es/shared/watch.js
CHANGED
package/dist/getLogFilter.js
CHANGED
package/dist/loadConfigFile.js
CHANGED
package/dist/parseAst.js
CHANGED
package/dist/rollup.js
CHANGED
package/dist/shared/index.js
CHANGED
package/dist/shared/parseAst.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*
|
|
2
2
|
@license
|
|
3
|
-
Rollup.js v4.53.
|
|
4
|
-
|
|
3
|
+
Rollup.js v4.53.2
|
|
4
|
+
Mon, 10 Nov 2025 08:56:08 GMT - commit d8b0150971681d9efa4f173de5edd2c79a6e03d9
|
|
5
5
|
|
|
6
6
|
https://github.com/rollup/rollup
|
|
7
7
|
|
|
@@ -1993,7 +1993,7 @@ const nodeConverters = [
|
|
|
1993
1993
|
function templateElement(position, buffer) {
|
|
1994
1994
|
const flags = buffer[position + 2];
|
|
1995
1995
|
const cookedPosition = buffer[position + 3];
|
|
1996
|
-
const cooked = cookedPosition === 0 ?
|
|
1996
|
+
const cooked = cookedPosition === 0 ? null : buffer.convertString(cookedPosition);
|
|
1997
1997
|
const raw = buffer.convertString(buffer[position + 4]);
|
|
1998
1998
|
return {
|
|
1999
1999
|
type: 'TemplateElement',
|
package/dist/shared/rollup.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*
|
|
2
2
|
@license
|
|
3
|
-
Rollup.js v4.53.
|
|
4
|
-
|
|
3
|
+
Rollup.js v4.53.2
|
|
4
|
+
Mon, 10 Nov 2025 08:56:08 GMT - commit d8b0150971681d9efa4f173de5edd2c79a6e03d9
|
|
5
5
|
|
|
6
6
|
https://github.com/rollup/rollup
|
|
7
7
|
|
|
@@ -42,7 +42,7 @@ function _mergeNamespaces(n, m) {
|
|
|
42
42
|
|
|
43
43
|
const promises__namespace = /*#__PURE__*/_interopNamespaceDefault(promises);
|
|
44
44
|
|
|
45
|
-
var version = "4.53.
|
|
45
|
+
var version = "4.53.2";
|
|
46
46
|
|
|
47
47
|
function ensureArray$1(items) {
|
|
48
48
|
if (Array.isArray(items)) {
|
|
@@ -17877,7 +17877,7 @@ const bufferParsers = [
|
|
|
17877
17877
|
const flags = buffer[position];
|
|
17878
17878
|
node.tail = (flags & 1) === 1;
|
|
17879
17879
|
const cookedPosition = buffer[position + 1];
|
|
17880
|
-
const cooked = cookedPosition === 0 ?
|
|
17880
|
+
const cooked = cookedPosition === 0 ? null : buffer.convertString(cookedPosition);
|
|
17881
17881
|
const raw = buffer.convertString(buffer[position + 2]);
|
|
17882
17882
|
node.value = { cooked, raw };
|
|
17883
17883
|
},
|
package/dist/shared/watch-cli.js
CHANGED
package/dist/shared/watch.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rollup",
|
|
3
|
-
"version": "4.53.
|
|
3
|
+
"version": "4.53.2",
|
|
4
4
|
"description": "Next-generation ES module bundler",
|
|
5
5
|
"main": "dist/rollup.js",
|
|
6
6
|
"module": "dist/es/rollup.js",
|
|
@@ -69,10 +69,9 @@
|
|
|
69
69
|
"lint:rust": "cd rust && cargo fmt && cargo clippy --fix --allow-dirty",
|
|
70
70
|
"lint:rust:nofix": "cd rust && cargo fmt --check && cargo clippy",
|
|
71
71
|
"perf": "npm run build:bootstrap:cjs && node --expose-gc scripts/perf-report/index.js",
|
|
72
|
-
"prepare": "husky && node scripts/check-release.js || npm run build:prepare",
|
|
72
|
+
"prepare": "husky && patch-package && node scripts/check-release.js || npm run build:prepare",
|
|
73
73
|
"prepublishOnly": "node scripts/check-release.js && node scripts/prepublish.js",
|
|
74
74
|
"postpublish": "node scripts/postpublish.js",
|
|
75
|
-
"postinstall": "patch-package",
|
|
76
75
|
"prepublish:napi": "napi prepublish --no-gh-release",
|
|
77
76
|
"release": "node scripts/prepare-release.js",
|
|
78
77
|
"release:docs": "git fetch --update-head-ok origin master:master && git branch --force documentation-published master && git push origin documentation-published",
|
|
@@ -87,7 +86,7 @@
|
|
|
87
86
|
"test:package": "node scripts/test-package.js",
|
|
88
87
|
"test:options": "node scripts/test-options.js",
|
|
89
88
|
"test:only": "mocha test/test.js",
|
|
90
|
-
"test:typescript": "
|
|
89
|
+
"test:typescript": "echo skipped",
|
|
91
90
|
"test:browser": "mocha test/browser/index.js",
|
|
92
91
|
"watch": "rollup --config rollup.config.ts --configPlugin typescript --watch"
|
|
93
92
|
},
|
|
@@ -110,28 +109,28 @@
|
|
|
110
109
|
"homepage": "https://rollupjs.org/",
|
|
111
110
|
"optionalDependencies": {
|
|
112
111
|
"fsevents": "~2.3.2",
|
|
113
|
-
"@rollup/rollup-darwin-arm64": "4.53.
|
|
114
|
-
"@rollup/rollup-android-arm64": "4.53.
|
|
115
|
-
"@rollup/rollup-win32-arm64-msvc": "4.53.
|
|
116
|
-
"@rollup/rollup-freebsd-arm64": "4.53.
|
|
117
|
-
"@rollup/rollup-linux-arm64-gnu": "4.53.
|
|
118
|
-
"@rollup/rollup-linux-arm64-musl": "4.53.
|
|
119
|
-
"@rollup/rollup-android-arm-eabi": "4.53.
|
|
120
|
-
"@rollup/rollup-linux-arm-gnueabihf": "4.53.
|
|
121
|
-
"@rollup/rollup-linux-arm-musleabihf": "4.53.
|
|
122
|
-
"@rollup/rollup-win32-ia32-msvc": "4.53.
|
|
123
|
-
"@rollup/rollup-linux-loong64-gnu": "4.53.
|
|
124
|
-
"@rollup/rollup-linux-riscv64-gnu": "4.53.
|
|
125
|
-
"@rollup/rollup-linux-riscv64-musl": "4.53.
|
|
126
|
-
"@rollup/rollup-linux-ppc64-gnu": "4.53.
|
|
127
|
-
"@rollup/rollup-linux-s390x-gnu": "4.53.
|
|
128
|
-
"@rollup/rollup-darwin-x64": "4.53.
|
|
129
|
-
"@rollup/rollup-win32-x64-gnu": "4.53.
|
|
130
|
-
"@rollup/rollup-win32-x64-msvc": "4.53.
|
|
131
|
-
"@rollup/rollup-freebsd-x64": "4.53.
|
|
132
|
-
"@rollup/rollup-linux-x64-gnu": "4.53.
|
|
133
|
-
"@rollup/rollup-linux-x64-musl": "4.53.
|
|
134
|
-
"@rollup/rollup-openharmony-arm64": "4.53.
|
|
112
|
+
"@rollup/rollup-darwin-arm64": "4.53.2",
|
|
113
|
+
"@rollup/rollup-android-arm64": "4.53.2",
|
|
114
|
+
"@rollup/rollup-win32-arm64-msvc": "4.53.2",
|
|
115
|
+
"@rollup/rollup-freebsd-arm64": "4.53.2",
|
|
116
|
+
"@rollup/rollup-linux-arm64-gnu": "4.53.2",
|
|
117
|
+
"@rollup/rollup-linux-arm64-musl": "4.53.2",
|
|
118
|
+
"@rollup/rollup-android-arm-eabi": "4.53.2",
|
|
119
|
+
"@rollup/rollup-linux-arm-gnueabihf": "4.53.2",
|
|
120
|
+
"@rollup/rollup-linux-arm-musleabihf": "4.53.2",
|
|
121
|
+
"@rollup/rollup-win32-ia32-msvc": "4.53.2",
|
|
122
|
+
"@rollup/rollup-linux-loong64-gnu": "4.53.2",
|
|
123
|
+
"@rollup/rollup-linux-riscv64-gnu": "4.53.2",
|
|
124
|
+
"@rollup/rollup-linux-riscv64-musl": "4.53.2",
|
|
125
|
+
"@rollup/rollup-linux-ppc64-gnu": "4.53.2",
|
|
126
|
+
"@rollup/rollup-linux-s390x-gnu": "4.53.2",
|
|
127
|
+
"@rollup/rollup-darwin-x64": "4.53.2",
|
|
128
|
+
"@rollup/rollup-win32-x64-gnu": "4.53.2",
|
|
129
|
+
"@rollup/rollup-win32-x64-msvc": "4.53.2",
|
|
130
|
+
"@rollup/rollup-freebsd-x64": "4.53.2",
|
|
131
|
+
"@rollup/rollup-linux-x64-gnu": "4.53.2",
|
|
132
|
+
"@rollup/rollup-linux-x64-musl": "4.53.2",
|
|
133
|
+
"@rollup/rollup-openharmony-arm64": "4.53.2"
|
|
135
134
|
},
|
|
136
135
|
"dependencies": {
|
|
137
136
|
"@types/estree": "1.0.8"
|