rolldown 1.2.4 → 1.2.6
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/bin/cli.mjs +10 -1
- package/dist/cli.mjs +6 -6
- package/dist/config.d.mts +3 -3
- package/dist/config.mjs +2 -2
- package/dist/experimental-index.d.mts +57 -28
- package/dist/experimental-index.mjs +36 -9
- package/dist/experimental-runtime-types.d.ts +2 -2
- package/dist/experimental-runtime.d.ts +2 -2
- package/dist/experimental-runtime.mjs +2 -2
- package/dist/filter-index.d.mts +1 -1
- package/dist/filter-index.mjs +1 -3
- package/dist/index.d.mts +3 -3
- package/dist/index.mjs +4 -4
- package/dist/parallel-plugin-worker.mjs +2 -2
- package/dist/parallel-plugin.d.mts +3 -3
- package/dist/parse-ast-index.d.mts +6 -7
- package/dist/parse-ast-index.mjs +1 -1
- package/dist/plugins-index.d.mts +5 -5
- package/dist/plugins-index.mjs +2 -2
- package/dist/shared/{binding-Zhafd14U.mjs → binding-CtPG-2KR.mjs} +29 -27
- package/dist/shared/{binding-CVtkJvyl.d.mts → binding-Og__jmUi.d.mts} +87 -4
- package/dist/shared/{bindingify-input-options-C-Zsy1EG.mjs → bindingify-input-options-4JJxbZl2.mjs} +11 -9
- package/dist/shared/{constructors-CGzna3vk.d.mts → constructors-Qrp2Xr6w.d.mts} +2 -2
- package/dist/shared/{constructors-u6EEiG8n.mjs → constructors-ltBDfHX1.mjs} +1 -1
- package/dist/shared/{create-bundler-option-wRiQzEJ3.mjs → create-bundler-option-DSPiA5F7.mjs} +49 -6
- package/dist/shared/{define-config-Dsp5YQR4.d.mts → define-config-Nbz-lniw.d.mts} +43 -5
- package/dist/shared/{error-CVc7IgvG.mjs → error-HDibX49O.mjs} +1 -1
- package/dist/shared/{load-config-63nAW5KO.mjs → load-config-BMUrE9HH.mjs} +1 -1
- package/dist/shared/{normalize-string-or-regex-BxRYnPRv.mjs → normalize-string-or-regex-DWz4it3p.mjs} +1 -1
- package/dist/shared/{parse-DnWvq9XZ.mjs → parse-D0g29RgN.mjs} +2 -2
- package/dist/shared/{resolve-tsconfig-SPewz4V3.mjs → resolve-tsconfig-CLYpUIZC.mjs} +10 -6
- package/dist/shared/{rolldown-DiYVDns9.mjs → rolldown-C9Hfg50O.mjs} +5 -4
- package/dist/shared/{transform-WmU_cI8e.d.mts → transform-DR4CXeQm.d.mts} +8 -4
- package/dist/shared/{watch-BNCfUBmW.mjs → watch-UbzgabQn.mjs} +4 -4
- package/dist/utils-index.d.mts +5 -5
- package/dist/utils-index.mjs +5 -5
- package/package.json +32 -30
|
@@ -104,7 +104,7 @@ var require_binding = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
104
104
|
try {
|
|
105
105
|
const binding = __require("@rolldown/binding-android-arm64");
|
|
106
106
|
const bindingPackageVersion = __require("@rolldown/binding-android-arm64/package.json").version;
|
|
107
|
-
if (bindingPackageVersion !== "1.2.
|
|
107
|
+
if (bindingPackageVersion !== "1.2.6" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw new Error(`Native binding package version mismatch, expected 1.2.6 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
108
108
|
return binding;
|
|
109
109
|
} catch (e) {
|
|
110
110
|
loadErrors.push(e);
|
|
@@ -118,7 +118,7 @@ var require_binding = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
118
118
|
try {
|
|
119
119
|
const binding = __require("@rolldown/binding-android-arm-eabi");
|
|
120
120
|
const bindingPackageVersion = __require("@rolldown/binding-android-arm-eabi/package.json").version;
|
|
121
|
-
if (bindingPackageVersion !== "1.2.
|
|
121
|
+
if (bindingPackageVersion !== "1.2.6" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw new Error(`Native binding package version mismatch, expected 1.2.6 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
122
122
|
return binding;
|
|
123
123
|
} catch (e) {
|
|
124
124
|
loadErrors.push(e);
|
|
@@ -135,7 +135,7 @@ var require_binding = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
135
135
|
try {
|
|
136
136
|
const binding = __require("@rolldown/binding-win32-x64-gnu");
|
|
137
137
|
const bindingPackageVersion = __require("@rolldown/binding-win32-x64-gnu/package.json").version;
|
|
138
|
-
if (bindingPackageVersion !== "1.2.
|
|
138
|
+
if (bindingPackageVersion !== "1.2.6" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw new Error(`Native binding package version mismatch, expected 1.2.6 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
139
139
|
return binding;
|
|
140
140
|
} catch (e) {
|
|
141
141
|
loadErrors.push(e);
|
|
@@ -149,7 +149,7 @@ var require_binding = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
149
149
|
try {
|
|
150
150
|
const binding = __require("@rolldown/binding-win32-x64-msvc");
|
|
151
151
|
const bindingPackageVersion = __require("@rolldown/binding-win32-x64-msvc/package.json").version;
|
|
152
|
-
if (bindingPackageVersion !== "1.2.
|
|
152
|
+
if (bindingPackageVersion !== "1.2.6" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw new Error(`Native binding package version mismatch, expected 1.2.6 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
153
153
|
return binding;
|
|
154
154
|
} catch (e) {
|
|
155
155
|
loadErrors.push(e);
|
|
@@ -164,7 +164,7 @@ var require_binding = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
164
164
|
try {
|
|
165
165
|
const binding = __require("@rolldown/binding-win32-ia32-msvc");
|
|
166
166
|
const bindingPackageVersion = __require("@rolldown/binding-win32-ia32-msvc/package.json").version;
|
|
167
|
-
if (bindingPackageVersion !== "1.2.
|
|
167
|
+
if (bindingPackageVersion !== "1.2.6" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw new Error(`Native binding package version mismatch, expected 1.2.6 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
168
168
|
return binding;
|
|
169
169
|
} catch (e) {
|
|
170
170
|
loadErrors.push(e);
|
|
@@ -178,7 +178,7 @@ var require_binding = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
178
178
|
try {
|
|
179
179
|
const binding = __require("@rolldown/binding-win32-arm64-msvc");
|
|
180
180
|
const bindingPackageVersion = __require("@rolldown/binding-win32-arm64-msvc/package.json").version;
|
|
181
|
-
if (bindingPackageVersion !== "1.2.
|
|
181
|
+
if (bindingPackageVersion !== "1.2.6" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw new Error(`Native binding package version mismatch, expected 1.2.6 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
182
182
|
return binding;
|
|
183
183
|
} catch (e) {
|
|
184
184
|
loadErrors.push(e);
|
|
@@ -193,7 +193,7 @@ var require_binding = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
193
193
|
try {
|
|
194
194
|
const binding = __require("@rolldown/binding-darwin-universal");
|
|
195
195
|
const bindingPackageVersion = __require("@rolldown/binding-darwin-universal/package.json").version;
|
|
196
|
-
if (bindingPackageVersion !== "1.2.
|
|
196
|
+
if (bindingPackageVersion !== "1.2.6" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw new Error(`Native binding package version mismatch, expected 1.2.6 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
197
197
|
return binding;
|
|
198
198
|
} catch (e) {
|
|
199
199
|
loadErrors.push(e);
|
|
@@ -207,7 +207,7 @@ var require_binding = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
207
207
|
try {
|
|
208
208
|
const binding = __require("@rolldown/binding-darwin-x64");
|
|
209
209
|
const bindingPackageVersion = __require("@rolldown/binding-darwin-x64/package.json").version;
|
|
210
|
-
if (bindingPackageVersion !== "1.2.
|
|
210
|
+
if (bindingPackageVersion !== "1.2.6" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw new Error(`Native binding package version mismatch, expected 1.2.6 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
211
211
|
return binding;
|
|
212
212
|
} catch (e) {
|
|
213
213
|
loadErrors.push(e);
|
|
@@ -221,7 +221,7 @@ var require_binding = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
221
221
|
try {
|
|
222
222
|
const binding = __require("@rolldown/binding-darwin-arm64");
|
|
223
223
|
const bindingPackageVersion = __require("@rolldown/binding-darwin-arm64/package.json").version;
|
|
224
|
-
if (bindingPackageVersion !== "1.2.
|
|
224
|
+
if (bindingPackageVersion !== "1.2.6" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw new Error(`Native binding package version mismatch, expected 1.2.6 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
225
225
|
return binding;
|
|
226
226
|
} catch (e) {
|
|
227
227
|
loadErrors.push(e);
|
|
@@ -237,7 +237,7 @@ var require_binding = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
237
237
|
try {
|
|
238
238
|
const binding = __require("@rolldown/binding-freebsd-x64");
|
|
239
239
|
const bindingPackageVersion = __require("@rolldown/binding-freebsd-x64/package.json").version;
|
|
240
|
-
if (bindingPackageVersion !== "1.2.
|
|
240
|
+
if (bindingPackageVersion !== "1.2.6" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw new Error(`Native binding package version mismatch, expected 1.2.6 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
241
241
|
return binding;
|
|
242
242
|
} catch (e) {
|
|
243
243
|
loadErrors.push(e);
|
|
@@ -251,7 +251,7 @@ var require_binding = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
251
251
|
try {
|
|
252
252
|
const binding = __require("@rolldown/binding-freebsd-arm64");
|
|
253
253
|
const bindingPackageVersion = __require("@rolldown/binding-freebsd-arm64/package.json").version;
|
|
254
|
-
if (bindingPackageVersion !== "1.2.
|
|
254
|
+
if (bindingPackageVersion !== "1.2.6" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw new Error(`Native binding package version mismatch, expected 1.2.6 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
255
255
|
return binding;
|
|
256
256
|
} catch (e) {
|
|
257
257
|
loadErrors.push(e);
|
|
@@ -268,7 +268,7 @@ var require_binding = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
268
268
|
try {
|
|
269
269
|
const binding = __require("@rolldown/binding-linux-x64-musl");
|
|
270
270
|
const bindingPackageVersion = __require("@rolldown/binding-linux-x64-musl/package.json").version;
|
|
271
|
-
if (bindingPackageVersion !== "1.2.
|
|
271
|
+
if (bindingPackageVersion !== "1.2.6" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw new Error(`Native binding package version mismatch, expected 1.2.6 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
272
272
|
return binding;
|
|
273
273
|
} catch (e) {
|
|
274
274
|
loadErrors.push(e);
|
|
@@ -282,7 +282,7 @@ var require_binding = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
282
282
|
try {
|
|
283
283
|
const binding = __require("@rolldown/binding-linux-x64-gnu");
|
|
284
284
|
const bindingPackageVersion = __require("@rolldown/binding-linux-x64-gnu/package.json").version;
|
|
285
|
-
if (bindingPackageVersion !== "1.2.
|
|
285
|
+
if (bindingPackageVersion !== "1.2.6" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw new Error(`Native binding package version mismatch, expected 1.2.6 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
286
286
|
return binding;
|
|
287
287
|
} catch (e) {
|
|
288
288
|
loadErrors.push(e);
|
|
@@ -298,7 +298,7 @@ var require_binding = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
298
298
|
try {
|
|
299
299
|
const binding = __require("@rolldown/binding-linux-arm64-musl");
|
|
300
300
|
const bindingPackageVersion = __require("@rolldown/binding-linux-arm64-musl/package.json").version;
|
|
301
|
-
if (bindingPackageVersion !== "1.2.
|
|
301
|
+
if (bindingPackageVersion !== "1.2.6" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw new Error(`Native binding package version mismatch, expected 1.2.6 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
302
302
|
return binding;
|
|
303
303
|
} catch (e) {
|
|
304
304
|
loadErrors.push(e);
|
|
@@ -312,7 +312,7 @@ var require_binding = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
312
312
|
try {
|
|
313
313
|
const binding = __require("@rolldown/binding-linux-arm64-gnu");
|
|
314
314
|
const bindingPackageVersion = __require("@rolldown/binding-linux-arm64-gnu/package.json").version;
|
|
315
|
-
if (bindingPackageVersion !== "1.2.
|
|
315
|
+
if (bindingPackageVersion !== "1.2.6" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw new Error(`Native binding package version mismatch, expected 1.2.6 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
316
316
|
return binding;
|
|
317
317
|
} catch (e) {
|
|
318
318
|
loadErrors.push(e);
|
|
@@ -328,7 +328,7 @@ var require_binding = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
328
328
|
try {
|
|
329
329
|
const binding = __require("@rolldown/binding-linux-arm-musleabihf");
|
|
330
330
|
const bindingPackageVersion = __require("@rolldown/binding-linux-arm-musleabihf/package.json").version;
|
|
331
|
-
if (bindingPackageVersion !== "1.2.
|
|
331
|
+
if (bindingPackageVersion !== "1.2.6" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw new Error(`Native binding package version mismatch, expected 1.2.6 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
332
332
|
return binding;
|
|
333
333
|
} catch (e) {
|
|
334
334
|
loadErrors.push(e);
|
|
@@ -342,7 +342,7 @@ var require_binding = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
342
342
|
try {
|
|
343
343
|
const binding = __require("@rolldown/binding-linux-arm-gnueabihf");
|
|
344
344
|
const bindingPackageVersion = __require("@rolldown/binding-linux-arm-gnueabihf/package.json").version;
|
|
345
|
-
if (bindingPackageVersion !== "1.2.
|
|
345
|
+
if (bindingPackageVersion !== "1.2.6" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw new Error(`Native binding package version mismatch, expected 1.2.6 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
346
346
|
return binding;
|
|
347
347
|
} catch (e) {
|
|
348
348
|
loadErrors.push(e);
|
|
@@ -358,7 +358,7 @@ var require_binding = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
358
358
|
try {
|
|
359
359
|
const binding = __require("@rolldown/binding-linux-loong64-musl");
|
|
360
360
|
const bindingPackageVersion = __require("@rolldown/binding-linux-loong64-musl/package.json").version;
|
|
361
|
-
if (bindingPackageVersion !== "1.2.
|
|
361
|
+
if (bindingPackageVersion !== "1.2.6" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw new Error(`Native binding package version mismatch, expected 1.2.6 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
362
362
|
return binding;
|
|
363
363
|
} catch (e) {
|
|
364
364
|
loadErrors.push(e);
|
|
@@ -372,7 +372,7 @@ var require_binding = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
372
372
|
try {
|
|
373
373
|
const binding = __require("@rolldown/binding-linux-loong64-gnu");
|
|
374
374
|
const bindingPackageVersion = __require("@rolldown/binding-linux-loong64-gnu/package.json").version;
|
|
375
|
-
if (bindingPackageVersion !== "1.2.
|
|
375
|
+
if (bindingPackageVersion !== "1.2.6" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw new Error(`Native binding package version mismatch, expected 1.2.6 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
376
376
|
return binding;
|
|
377
377
|
} catch (e) {
|
|
378
378
|
loadErrors.push(e);
|
|
@@ -388,7 +388,7 @@ var require_binding = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
388
388
|
try {
|
|
389
389
|
const binding = __require("@rolldown/binding-linux-riscv64-musl");
|
|
390
390
|
const bindingPackageVersion = __require("@rolldown/binding-linux-riscv64-musl/package.json").version;
|
|
391
|
-
if (bindingPackageVersion !== "1.2.
|
|
391
|
+
if (bindingPackageVersion !== "1.2.6" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw new Error(`Native binding package version mismatch, expected 1.2.6 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
392
392
|
return binding;
|
|
393
393
|
} catch (e) {
|
|
394
394
|
loadErrors.push(e);
|
|
@@ -402,7 +402,7 @@ var require_binding = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
402
402
|
try {
|
|
403
403
|
const binding = __require("@rolldown/binding-linux-riscv64-gnu");
|
|
404
404
|
const bindingPackageVersion = __require("@rolldown/binding-linux-riscv64-gnu/package.json").version;
|
|
405
|
-
if (bindingPackageVersion !== "1.2.
|
|
405
|
+
if (bindingPackageVersion !== "1.2.6" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw new Error(`Native binding package version mismatch, expected 1.2.6 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
406
406
|
return binding;
|
|
407
407
|
} catch (e) {
|
|
408
408
|
loadErrors.push(e);
|
|
@@ -417,7 +417,7 @@ var require_binding = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
417
417
|
try {
|
|
418
418
|
const binding = __require("@rolldown/binding-linux-ppc64-gnu");
|
|
419
419
|
const bindingPackageVersion = __require("@rolldown/binding-linux-ppc64-gnu/package.json").version;
|
|
420
|
-
if (bindingPackageVersion !== "1.2.
|
|
420
|
+
if (bindingPackageVersion !== "1.2.6" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw new Error(`Native binding package version mismatch, expected 1.2.6 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
421
421
|
return binding;
|
|
422
422
|
} catch (e) {
|
|
423
423
|
loadErrors.push(e);
|
|
@@ -431,7 +431,7 @@ var require_binding = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
431
431
|
try {
|
|
432
432
|
const binding = __require("@rolldown/binding-linux-s390x-gnu");
|
|
433
433
|
const bindingPackageVersion = __require("@rolldown/binding-linux-s390x-gnu/package.json").version;
|
|
434
|
-
if (bindingPackageVersion !== "1.2.
|
|
434
|
+
if (bindingPackageVersion !== "1.2.6" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw new Error(`Native binding package version mismatch, expected 1.2.6 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
435
435
|
return binding;
|
|
436
436
|
} catch (e) {
|
|
437
437
|
loadErrors.push(e);
|
|
@@ -447,7 +447,7 @@ var require_binding = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
447
447
|
try {
|
|
448
448
|
const binding = __require("@rolldown/binding-openharmony-arm64");
|
|
449
449
|
const bindingPackageVersion = __require("@rolldown/binding-openharmony-arm64/package.json").version;
|
|
450
|
-
if (bindingPackageVersion !== "1.2.
|
|
450
|
+
if (bindingPackageVersion !== "1.2.6" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw new Error(`Native binding package version mismatch, expected 1.2.6 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
451
451
|
return binding;
|
|
452
452
|
} catch (e) {
|
|
453
453
|
loadErrors.push(e);
|
|
@@ -461,7 +461,7 @@ var require_binding = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
461
461
|
try {
|
|
462
462
|
const binding = __require("@rolldown/binding-openharmony-x64");
|
|
463
463
|
const bindingPackageVersion = __require("@rolldown/binding-openharmony-x64/package.json").version;
|
|
464
|
-
if (bindingPackageVersion !== "1.2.
|
|
464
|
+
if (bindingPackageVersion !== "1.2.6" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw new Error(`Native binding package version mismatch, expected 1.2.6 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
465
465
|
return binding;
|
|
466
466
|
} catch (e) {
|
|
467
467
|
loadErrors.push(e);
|
|
@@ -475,7 +475,7 @@ var require_binding = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
475
475
|
try {
|
|
476
476
|
const binding = __require("@rolldown/binding-openharmony-arm");
|
|
477
477
|
const bindingPackageVersion = __require("@rolldown/binding-openharmony-arm/package.json").version;
|
|
478
|
-
if (bindingPackageVersion !== "1.2.
|
|
478
|
+
if (bindingPackageVersion !== "1.2.6" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw new Error(`Native binding package version mismatch, expected 1.2.6 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
479
479
|
return binding;
|
|
480
480
|
} catch (e) {
|
|
481
481
|
loadErrors.push(e);
|
|
@@ -565,7 +565,7 @@ var require_binding = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
565
565
|
if (!candidateFailed) {
|
|
566
566
|
if (process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") {
|
|
567
567
|
const bindingPackageVersion = __require("@rolldown/binding-wasm32-wasi/package.json").version;
|
|
568
|
-
if (bindingPackageVersion !== "1.2.
|
|
568
|
+
if (bindingPackageVersion !== "1.2.6") throw new Error(`WASI binding package version mismatch, expected 1.2.6 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
569
569
|
}
|
|
570
570
|
wasiBinding = __require("@rolldown/binding-wasm32-wasi");
|
|
571
571
|
nativeBinding = wasiBinding;
|
|
@@ -663,8 +663,10 @@ var require_binding = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
663
663
|
module.exports.enhancedTransform = nativeBinding.enhancedTransform;
|
|
664
664
|
module.exports.enhancedTransformSync = nativeBinding.enhancedTransformSync;
|
|
665
665
|
module.exports.FilterTokenKind = nativeBinding.FilterTokenKind;
|
|
666
|
+
module.exports.getNativeMemoryStats = nativeBinding.getNativeMemoryStats;
|
|
666
667
|
module.exports.initTraceSubscriber = nativeBinding.initTraceSubscriber;
|
|
667
668
|
module.exports.registerPlugins = nativeBinding.registerPlugins;
|
|
669
|
+
module.exports.resetNativeMemoryStats = nativeBinding.resetNativeMemoryStats;
|
|
668
670
|
module.exports.resolveTsconfig = nativeBinding.resolveTsconfig;
|
|
669
671
|
module.exports.shutdownAsyncRuntime = nativeBinding.shutdownAsyncRuntime;
|
|
670
672
|
module.exports.startAsyncRuntime = nativeBinding.startAsyncRuntime;
|
|
@@ -147,11 +147,48 @@ interface MangleOptionsKeepNames {
|
|
|
147
147
|
*/
|
|
148
148
|
class: boolean;
|
|
149
149
|
}
|
|
150
|
+
interface ManglePropertiesOptions {
|
|
151
|
+
/**
|
|
152
|
+
* JavaScript `RegExp` selecting property names to mangle. The source and flags are compiled
|
|
153
|
+
* with Rust's regex engine. Flags `i`, `m`, `s`, and `u` are supported.
|
|
154
|
+
*/
|
|
155
|
+
include: RegExp;
|
|
156
|
+
/** JavaScript `RegExp` excluding property names selected by `include`. */
|
|
157
|
+
exclude?: RegExp;
|
|
158
|
+
/** Exact names that are neither mangled nor emitted as automatic output names. */
|
|
159
|
+
reserved?: Array<string>;
|
|
160
|
+
/**
|
|
161
|
+
* Mangle quoted property occurrences in addition to unquoted occurrences.
|
|
162
|
+
*
|
|
163
|
+
* @default false
|
|
164
|
+
*/
|
|
165
|
+
quoted?: boolean;
|
|
166
|
+
/**
|
|
167
|
+
* Generate readable `_$name$_`-style output names.
|
|
168
|
+
*
|
|
169
|
+
* @default false
|
|
170
|
+
*/
|
|
171
|
+
debug?: boolean;
|
|
172
|
+
/**
|
|
173
|
+
* Stable mappings from original names to output names. `false` reserves an original name.
|
|
174
|
+
* Entries that do not match `include`, or that match `exclude`, remain inert but are
|
|
175
|
+
* preserved in the returned `mangleCache`. String targets must be `IdentifierName` values
|
|
176
|
+
* other than `__proto__`, `constructor`, or `prototype`. The original name `__proto__` is
|
|
177
|
+
* always reserved and cannot be used as a cache key.
|
|
178
|
+
*/
|
|
179
|
+
cache?: Record<string, string | false>;
|
|
180
|
+
}
|
|
150
181
|
interface MinifyOptions {
|
|
151
182
|
/** Use when minifying an ES module. */
|
|
152
183
|
module?: boolean;
|
|
153
184
|
compress?: boolean | CompressOptions;
|
|
154
185
|
mangle?: boolean | MangleOptions;
|
|
186
|
+
/**
|
|
187
|
+
* Mangle matching property names independently of identifier mangling. Properties owned by
|
|
188
|
+
* unminified code, imported module namespaces, globals, or host APIs must be excluded or
|
|
189
|
+
* reserved.
|
|
190
|
+
*/
|
|
191
|
+
mangleProps?: ManglePropertiesOptions;
|
|
155
192
|
codegen?: boolean | CodegenOptions;
|
|
156
193
|
sourcemap?: boolean;
|
|
157
194
|
}
|
|
@@ -164,6 +201,11 @@ interface MinifyResult {
|
|
|
164
201
|
* Only populated when `codegen.legalComments` is `"linked"` or `"external"`.
|
|
165
202
|
*/
|
|
166
203
|
legalComments: Array<string>;
|
|
204
|
+
/**
|
|
205
|
+
* Updated property-name cache sorted by original name. Present when `mangleProps` ran on a
|
|
206
|
+
* parse without errors.
|
|
207
|
+
*/
|
|
208
|
+
mangleCache?: Record<string, string | false>;
|
|
167
209
|
}
|
|
168
210
|
interface TreeShakeOptions {
|
|
169
211
|
/**
|
|
@@ -1377,6 +1419,17 @@ declare class BindingMagicString {
|
|
|
1377
1419
|
*/
|
|
1378
1420
|
generateDecodedMap(options?: BindingSourceMapOptions | undefined | null): BindingDecodedMap;
|
|
1379
1421
|
}
|
|
1422
|
+
declare class BindingModuleInfo {
|
|
1423
|
+
id: string;
|
|
1424
|
+
importers: Array<string>;
|
|
1425
|
+
dynamicImporters: Array<string>;
|
|
1426
|
+
importedIds: Array<string>;
|
|
1427
|
+
dynamicallyImportedIds: Array<string>;
|
|
1428
|
+
exports: Array<string>;
|
|
1429
|
+
isEntry: boolean;
|
|
1430
|
+
inputFormat: 'es' | 'cjs' | 'unknown';
|
|
1431
|
+
get code(): string | null;
|
|
1432
|
+
}
|
|
1380
1433
|
declare class BindingNormalizedOptions {
|
|
1381
1434
|
get input(): Array<string> | Record<string, string>;
|
|
1382
1435
|
get cwd(): string;
|
|
@@ -1464,8 +1517,8 @@ declare class BindingWatcherBundler {
|
|
|
1464
1517
|
close(): Promise<void>;
|
|
1465
1518
|
}
|
|
1466
1519
|
declare class TsconfigCache {
|
|
1467
|
-
/** Create a new transform cache with auto tsconfig discovery enabled. */
|
|
1468
|
-
constructor(yarnPnp: boolean);
|
|
1520
|
+
/** Create a new transform cache with auto or manual tsconfig discovery enabled. */
|
|
1521
|
+
constructor(yarnPnp: boolean, pathToTsconfig?: string | undefined | null);
|
|
1469
1522
|
/**
|
|
1470
1523
|
* Clear the cache.
|
|
1471
1524
|
*
|
|
@@ -1591,9 +1644,10 @@ interface BindingEnhancedTransformOptions {
|
|
|
1591
1644
|
/**
|
|
1592
1645
|
* Configure tsconfig handling.
|
|
1593
1646
|
* - true: Auto-discover and load the nearest tsconfig.json
|
|
1647
|
+
* - string: Use the tsconfig at the provided path
|
|
1594
1648
|
* - TsconfigRawOptions: Use the provided inline tsconfig options
|
|
1595
1649
|
*/
|
|
1596
|
-
tsconfig?: boolean | BindingTsconfigRawOptions;
|
|
1650
|
+
tsconfig?: boolean | string | BindingTsconfigRawOptions;
|
|
1597
1651
|
/** An input source map to collapse with the output source map. */
|
|
1598
1652
|
inputMap?: SourceMap;
|
|
1599
1653
|
}
|
|
@@ -1737,6 +1791,21 @@ interface BindingModules {
|
|
|
1737
1791
|
values: Array<BindingRenderedModule>;
|
|
1738
1792
|
keys: Array<string>;
|
|
1739
1793
|
}
|
|
1794
|
+
/**
|
|
1795
|
+
* Counters of the Rust-side tracking allocator. V8 never allocates through
|
|
1796
|
+
* the Rust global allocator, so these numbers exclude the JS heap and GC
|
|
1797
|
+
* noise completely, unlike `process.memoryUsage()`.
|
|
1798
|
+
*/
|
|
1799
|
+
interface BindingNativeMemoryStats {
|
|
1800
|
+
/** Bytes currently allocated and not yet freed, since process start. */
|
|
1801
|
+
liveBytes: number;
|
|
1802
|
+
/** Highest `live_bytes` seen since process start or the last reset. */
|
|
1803
|
+
peakBytes: number;
|
|
1804
|
+
/** Successful `alloc` calls since the last reset. */
|
|
1805
|
+
allocCount: number;
|
|
1806
|
+
/** Successful `realloc` calls since the last reset. */
|
|
1807
|
+
reallocCount: number;
|
|
1808
|
+
}
|
|
1740
1809
|
interface BindingOverwriteOptions {
|
|
1741
1810
|
contentOnly?: boolean;
|
|
1742
1811
|
/** Stores the replaced content in the generated sourcemap's `names` field. */
|
|
@@ -1901,6 +1970,7 @@ interface BindingViteReporterPluginConfig {
|
|
|
1901
1970
|
}
|
|
1902
1971
|
interface BindingViteResolvePluginConfig {
|
|
1903
1972
|
resolveOptions: BindingViteResolvePluginResolveOptions;
|
|
1973
|
+
tsconfig?: string;
|
|
1904
1974
|
environmentConsumer: string;
|
|
1905
1975
|
environmentName: string;
|
|
1906
1976
|
builtins: Array<BindingStringOrRegex>;
|
|
@@ -1935,6 +2005,7 @@ interface BindingViteResolvePluginResolveOptions {
|
|
|
1935
2005
|
}
|
|
1936
2006
|
interface BindingViteTransformPluginConfig {
|
|
1937
2007
|
root: string;
|
|
2008
|
+
tsconfig?: string;
|
|
1938
2009
|
include?: Array<BindingStringOrRegex>;
|
|
1939
2010
|
exclude?: Array<BindingStringOrRegex>;
|
|
1940
2011
|
jsxRefreshInclude?: Array<BindingStringOrRegex>;
|
|
@@ -1948,6 +2019,12 @@ interface ExternalMemoryStatus {
|
|
|
1948
2019
|
freed: boolean;
|
|
1949
2020
|
reason?: string;
|
|
1950
2021
|
}
|
|
2022
|
+
/**
|
|
2023
|
+
* Returns the Rust-side allocator counters, or `None` when this binding was
|
|
2024
|
+
* built without the `tracking_allocator` cargo feature (the default —
|
|
2025
|
+
* tracking costs a few atomic operations per allocation).
|
|
2026
|
+
*/
|
|
2027
|
+
declare function getNativeMemoryStats(): BindingNativeMemoryStats | null;
|
|
1951
2028
|
/** Error emitted from native side, it only contains kind and message, no stack trace. */
|
|
1952
2029
|
interface NativeError {
|
|
1953
2030
|
kind: string;
|
|
@@ -1975,8 +2052,14 @@ interface PreRenderedChunk {
|
|
|
1975
2052
|
/** Exported variable names from this chunk. */
|
|
1976
2053
|
exports: Array<string>;
|
|
1977
2054
|
}
|
|
2055
|
+
/**
|
|
2056
|
+
* Starts a new measuring window: the peak restarts from the current live
|
|
2057
|
+
* bytes and the counts restart from zero. No-op when the binding was built
|
|
2058
|
+
* without the `tracking_allocator` cargo feature.
|
|
2059
|
+
*/
|
|
2060
|
+
declare function resetNativeMemoryStats(): void;
|
|
1978
2061
|
interface ViteImportGlobMeta {
|
|
1979
2062
|
isSubImportsPattern?: boolean;
|
|
1980
2063
|
}
|
|
1981
2064
|
//#endregion
|
|
1982
|
-
export {
|
|
2065
|
+
export { resetNativeMemoryStats as $, BindingViteResolvePluginConfig as A, NapiResolveOptions as B, BindingViteDynamicImportVarsPluginConfig as C, BindingViteModulePreloadPolyfillPluginConfig as D, BindingViteManifestPluginConfig as E, IsolatedDeclarationsResult as F, ResolverFactory as G, ParserOptions as H, JsxOptions as I, TsconfigCache as J, SourceMap as K, ManglePropertiesOptions as L, BindingWatcherBundler as M, ExternalMemoryStatus as N, BindingViteReactRefreshWrapperPluginConfig as O, IsolatedDeclarationsOptions as P, moduleRunnerTransform as Q, MinifyOptions as R, BindingViteBuildImportAnalysisPluginConfig as S, BindingViteJsonPluginConfig as T, PreRenderedChunk as U, ParseResult as V, ResolveResult as W, isolatedDeclaration as X, getNativeMemoryStats as Y, isolatedDeclarationSync as Z, BindingReplacePluginConfig as _, BindingEnhancedTransformOptions as a, BindingTsconfigRawOptions as b, BindingHookResolveIdExtraArgs as c, BindingMagicString as d, BindingModuleInfo as f, BindingRenderedChunk as g, BindingRebuildStrategy as h, BindingClientHmrUpdate as i, BindingViteTransformPluginConfig as j, BindingViteReporterPluginConfig as k, BindingIsolatedDeclarationPluginConfig as l, BindingPluginContextResolveOptions as m, BindingBundleAnalyzerPluginConfig as n, BindingEnhancedTransformResult as o, BindingNativeMemoryStats as p, TransformOptions as q, BindingBundleState as r, BindingEsmExternalRequirePluginConfig as s, BindingBuiltinPluginName as t, BindingLazyChunkOutput as u, BindingTransformHookExtraArgs as v, BindingViteImportGlobPluginConfig as w, BindingTsconfigResult as x, BindingTsconfigCompilerOptions as y, MinifyResult as z };
|
package/dist/shared/{bindingify-input-options-C-Zsy1EG.mjs → bindingify-input-options-4JJxbZl2.mjs}
RENAMED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { n as __toESM, t as require_binding } from "./binding-
|
|
1
|
+
import { n as __toESM, t as require_binding } from "./binding-CtPG-2KR.mjs";
|
|
2
2
|
import { i as logFailedValidation, l as logPluginError, n as error, o as logInvalidLogPosition, r as logCycleLoading, t as augmentCodeLocation } from "./logs-DmYCAKcW.mjs";
|
|
3
|
-
import { i as bindingifyManifestPlugin, n as BuiltinPlugin, r as bindingifyBuiltInPlugin, t as normalizedStringOrRegex } from "./normalize-string-or-regex-
|
|
3
|
+
import { i as bindingifyManifestPlugin, n as BuiltinPlugin, r as bindingifyBuiltInPlugin, t as normalizedStringOrRegex } from "./normalize-string-or-regex-DWz4it3p.mjs";
|
|
4
4
|
import { i as noop, n as isPathFragment, o as unreachable, s as unsupported, t as arraify } from "./misc-DOSKtd97.mjs";
|
|
5
|
-
import { a as bindingifySourcemap, i as unwrapBindingResult, t as aggregateBindingErrorsIntoJsError } from "./error-
|
|
5
|
+
import { a as bindingifySourcemap, i as unwrapBindingResult, t as aggregateBindingErrorsIntoJsError } from "./error-HDibX49O.mjs";
|
|
6
6
|
import { parseAst } from "../parse-ast-index.mjs";
|
|
7
7
|
import fs from "node:fs";
|
|
8
8
|
import path from "node:path";
|
|
@@ -10,7 +10,7 @@ import * as filter from "@rolldown/pluginutils";
|
|
|
10
10
|
import fsp from "node:fs/promises";
|
|
11
11
|
import { fileURLToPath } from "node:url";
|
|
12
12
|
//#region package.json
|
|
13
|
-
var version = "1.2.
|
|
13
|
+
var version = "1.2.6";
|
|
14
14
|
var description = "Fast JavaScript/TypeScript bundler in Rust with Rollup-compatible API.";
|
|
15
15
|
//#endregion
|
|
16
16
|
//#region src/constants/version.ts
|
|
@@ -236,7 +236,7 @@ function bindingAssetSource(source) {
|
|
|
236
236
|
return { inner: source };
|
|
237
237
|
}
|
|
238
238
|
//#endregion
|
|
239
|
-
//#region \0@oxc-project+runtime@0.
|
|
239
|
+
//#region \0@oxc-project+runtime@0.147.0/helpers/esm/decorate.js
|
|
240
240
|
function __decorate(decorators, target, key, desc) {
|
|
241
241
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
242
242
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -520,7 +520,9 @@ function transformToMutableRollupOutputAsset(bindingAsset, changed) {
|
|
|
520
520
|
}
|
|
521
521
|
function transformToRollupOutput(output) {
|
|
522
522
|
const { chunks, assets } = output;
|
|
523
|
-
|
|
523
|
+
const transformed = { output: [...chunks.map((chunk) => transformToRollupOutputChunk(chunk)), ...assets.map((asset) => transformToRollupOutputAsset(asset))] };
|
|
524
|
+
if (output.mangleCache !== void 0) transformed.mangleCache = output.mangleCache;
|
|
525
|
+
return transformed;
|
|
524
526
|
}
|
|
525
527
|
function transformToMutableRollupOutput(output, changed) {
|
|
526
528
|
const { chunks, assets } = output;
|
|
@@ -1022,7 +1024,7 @@ function normalizeTransformHookSourcemap(id, originalCode, rawMap) {
|
|
|
1022
1024
|
return map;
|
|
1023
1025
|
}
|
|
1024
1026
|
//#endregion
|
|
1025
|
-
//#region ../../node_modules/.pnpm/remeda@2.
|
|
1027
|
+
//#region ../../node_modules/.pnpm/remeda@2.42.0/node_modules/remeda/dist/lazyDataLastImpl--3B10z3s.js
|
|
1026
1028
|
function e(e, t, n) {
|
|
1027
1029
|
let r = (n) => e(n, ...t);
|
|
1028
1030
|
return n === void 0 ? r : Object.assign(r, {
|
|
@@ -1031,7 +1033,7 @@ function e(e, t, n) {
|
|
|
1031
1033
|
});
|
|
1032
1034
|
}
|
|
1033
1035
|
//#endregion
|
|
1034
|
-
//#region ../../node_modules/.pnpm/remeda@2.
|
|
1036
|
+
//#region ../../node_modules/.pnpm/remeda@2.42.0/node_modules/remeda/dist/purry.js
|
|
1035
1037
|
function t$1(t, n, r) {
|
|
1036
1038
|
let i = t.length - n.length;
|
|
1037
1039
|
if (i === 0) return t(...n);
|
|
@@ -1039,7 +1041,7 @@ function t$1(t, n, r) {
|
|
|
1039
1041
|
throw Error(`Wrong number of arguments`);
|
|
1040
1042
|
}
|
|
1041
1043
|
//#endregion
|
|
1042
|
-
//#region ../../node_modules/.pnpm/remeda@2.
|
|
1044
|
+
//#region ../../node_modules/.pnpm/remeda@2.42.0/node_modules/remeda/dist/partition.js
|
|
1043
1045
|
function t(...t) {
|
|
1044
1046
|
return t$1(n, t);
|
|
1045
1047
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
1
|
+
import { A as BindingViteResolvePluginConfig, C as BindingViteDynamicImportVarsPluginConfig, D as BindingViteModulePreloadPolyfillPluginConfig, O as BindingViteReactRefreshWrapperPluginConfig, S as BindingViteBuildImportAnalysisPluginConfig, T as BindingViteJsonPluginConfig, k as BindingViteReporterPluginConfig, l as BindingIsolatedDeclarationPluginConfig, s as BindingEsmExternalRequirePluginConfig, w as BindingViteImportGlobPluginConfig } from "./binding-Og__jmUi.mjs";
|
|
2
|
+
import { I as BuiltinPlugin, Kt as StringOrRegExp } from "./define-config-Nbz-lniw.mjs";
|
|
3
3
|
//#region src/builtin-plugin/constructors.d.ts
|
|
4
4
|
declare function viteModulePreloadPolyfillPlugin(config?: BindingViteModulePreloadPolyfillPluginConfig): BuiltinPlugin;
|
|
5
5
|
type DynamicImportVarsPluginConfig = Omit<BindingViteDynamicImportVarsPluginConfig, "include" | "exclude"> & {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { a as makeBuiltinPluginCallable, n as BuiltinPlugin, t as normalizedStringOrRegex } from "./normalize-string-or-regex-
|
|
1
|
+
import { a as makeBuiltinPluginCallable, n as BuiltinPlugin, t as normalizedStringOrRegex } from "./normalize-string-or-regex-DWz4it3p.mjs";
|
|
2
2
|
//#region src/builtin-plugin/constructors.ts
|
|
3
3
|
function viteModulePreloadPolyfillPlugin(config) {
|
|
4
4
|
return new BuiltinPlugin("builtin:vite-module-preload-polyfill", config);
|
package/dist/shared/{create-bundler-option-wRiQzEJ3.mjs → create-bundler-option-DSPiA5F7.mjs}
RENAMED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { n as __toESM, t as require_binding } from "./binding-
|
|
1
|
+
import { n as __toESM, t as require_binding } from "./binding-CtPG-2KR.mjs";
|
|
2
2
|
import { a as logInputHookInOutputPlugin, n as error } from "./logs-DmYCAKcW.mjs";
|
|
3
|
-
import { n as BuiltinPlugin } from "./normalize-string-or-regex-
|
|
4
|
-
import { C as LOG_LEVEL_WARN, T as VERSION, _ as getParallelPluginInfo, a as measureIfFunction, b as LOG_LEVEL_DEBUG, c as PluginContextData, d as transformRenderedChunk, g as MinimalPluginContextImpl, i as measureHookCost, l as transformModuleInfo, o as pluginTimingsRecorderFor, p as transformAssetSource, r as OUTPUT_OPTIONS_OWNER, t as bindingifyInputOptions, v as normalizeHook, w as logLevelPriority, y as normalizeLog } from "./bindingify-input-options-
|
|
3
|
+
import { n as BuiltinPlugin } from "./normalize-string-or-regex-DWz4it3p.mjs";
|
|
4
|
+
import { C as LOG_LEVEL_WARN, T as VERSION, _ as getParallelPluginInfo, a as measureIfFunction, b as LOG_LEVEL_DEBUG, c as PluginContextData, d as transformRenderedChunk, g as MinimalPluginContextImpl, i as measureHookCost, l as transformModuleInfo, o as pluginTimingsRecorderFor, p as transformAssetSource, r as OUTPUT_OPTIONS_OWNER, t as bindingifyInputOptions, v as normalizeHook, w as logLevelPriority, y as normalizeLog } from "./bindingify-input-options-4JJxbZl2.mjs";
|
|
5
5
|
import { a as unimplemented } from "./misc-DOSKtd97.mjs";
|
|
6
6
|
import { Worker } from "node:worker_threads";
|
|
7
7
|
import path, { sep } from "node:path";
|
|
@@ -1522,7 +1522,8 @@ const ChecksOptionsSchema = /* @__PURE__ */ strictObject({
|
|
|
1522
1522
|
unsupportedTsconfigOption: /* @__PURE__ */ pipe(/* @__PURE__ */ optional(/* @__PURE__ */ boolean()), /* @__PURE__ */ description("Whether to emit warnings when a tsconfig option or combination of options is not supported")),
|
|
1523
1523
|
ineffectiveDynamicImport: /* @__PURE__ */ pipe(/* @__PURE__ */ optional(/* @__PURE__ */ boolean()), /* @__PURE__ */ description("Whether to emit warnings when a module is dynamically imported but also statically imported, making the dynamic import ineffective for code splitting")),
|
|
1524
1524
|
largeBarrelModules: /* @__PURE__ */ pipe(/* @__PURE__ */ optional(/* @__PURE__ */ boolean()), /* @__PURE__ */ description("Whether to emit info logs when a barrel module has a very large number of re-exports (more than 5000)")),
|
|
1525
|
-
sourcemapBroken: /* @__PURE__ */ pipe(/* @__PURE__ */ optional(/* @__PURE__ */ boolean()), /* @__PURE__ */ description("Whether to emit warnings when a plugin transforms code without generating a sourcemap"))
|
|
1525
|
+
sourcemapBroken: /* @__PURE__ */ pipe(/* @__PURE__ */ optional(/* @__PURE__ */ boolean()), /* @__PURE__ */ description("Whether to emit warnings when a plugin transforms code without generating a sourcemap")),
|
|
1526
|
+
namespaceConflict: /* @__PURE__ */ pipe(/* @__PURE__ */ optional(/* @__PURE__ */ boolean()), /* @__PURE__ */ description("Whether to emit warnings when multiple star re-exports provide the same name from different modules"))
|
|
1526
1527
|
});
|
|
1527
1528
|
const MinifyOptionsSchema = /* @__PURE__ */ strictObject({
|
|
1528
1529
|
compress: /* @__PURE__ */ optional(/* @__PURE__ */ union([/* @__PURE__ */ boolean(), /* @__PURE__ */ strictObject({
|
|
@@ -1556,6 +1557,14 @@ const MinifyOptionsSchema = /* @__PURE__ */ strictObject({
|
|
|
1556
1557
|
reserved: /* @__PURE__ */ optional(/* @__PURE__ */ array(/* @__PURE__ */ string())),
|
|
1557
1558
|
debug: /* @__PURE__ */ optional(/* @__PURE__ */ boolean())
|
|
1558
1559
|
})])),
|
|
1560
|
+
mangleProps: /* @__PURE__ */ optional(/* @__PURE__ */ strictObject({
|
|
1561
|
+
include: /* @__PURE__ */ instance(RegExp),
|
|
1562
|
+
exclude: /* @__PURE__ */ optional(/* @__PURE__ */ instance(RegExp)),
|
|
1563
|
+
reserved: /* @__PURE__ */ optional(/* @__PURE__ */ array(/* @__PURE__ */ string())),
|
|
1564
|
+
quoted: /* @__PURE__ */ optional(/* @__PURE__ */ boolean()),
|
|
1565
|
+
debug: /* @__PURE__ */ optional(/* @__PURE__ */ boolean()),
|
|
1566
|
+
cache: /* @__PURE__ */ optional(/* @__PURE__ */ record(/* @__PURE__ */ string(), /* @__PURE__ */ union([/* @__PURE__ */ string(), /* @__PURE__ */ literal(false)])))
|
|
1567
|
+
})),
|
|
1559
1568
|
codegen: /* @__PURE__ */ optional(/* @__PURE__ */ union([/* @__PURE__ */ boolean(), /* @__PURE__ */ strictObject({
|
|
1560
1569
|
removeWhitespace: /* @__PURE__ */ optional(/* @__PURE__ */ boolean()),
|
|
1561
1570
|
legalComments: /* @__PURE__ */ optional(/* @__PURE__ */ union([
|
|
@@ -3060,8 +3069,8 @@ function bindingifyCodeSplitting(codeSplitting, inlineDynamicImportsOption, adva
|
|
|
3060
3069
|
const { name, test, ...restGroup } = group;
|
|
3061
3070
|
return {
|
|
3062
3071
|
...restGroup,
|
|
3063
|
-
test: typeof test === "function" ? measureHookCost(timings, OUTPUT_OPTIONS_OWNER, "codeSplitting groups[].test", test) : test,
|
|
3064
|
-
name: typeof name === "function" ? measureHookCost(timings, OUTPUT_OPTIONS_OWNER, "codeSplitting groups[].name",
|
|
3072
|
+
test: typeof test === "function" ? batchTest(measureHookCost(timings, OUTPUT_OPTIONS_OWNER, "codeSplitting groups[].test", test)) : test,
|
|
3073
|
+
name: typeof name === "function" ? batchName(measureHookCost(timings, OUTPUT_OPTIONS_OWNER, "codeSplitting groups[].name", name), pluginContextData) : name
|
|
3065
3074
|
};
|
|
3066
3075
|
})
|
|
3067
3076
|
};
|
|
@@ -3071,6 +3080,40 @@ function bindingifyCodeSplitting(codeSplitting, inlineDynamicImportsOption, adva
|
|
|
3071
3080
|
advancedChunks: advancedChunksResult
|
|
3072
3081
|
};
|
|
3073
3082
|
}
|
|
3083
|
+
/**
|
|
3084
|
+
* Wraps a per-id `test` in the batched shim that the binding expects.
|
|
3085
|
+
*
|
|
3086
|
+
* The loop runs in JS so that a group makes one napi crossing, not one per module.
|
|
3087
|
+
*
|
|
3088
|
+
* The result is a `Uint8Array`, which crosses as a buffer instead of one tagged value per id.
|
|
3089
|
+
*/
|
|
3090
|
+
function batchTest(test) {
|
|
3091
|
+
return (ids) => {
|
|
3092
|
+
const results = new Uint8Array(ids.length);
|
|
3093
|
+
for (let index = 0; index < ids.length; index++) {
|
|
3094
|
+
const result = test(ids[index]);
|
|
3095
|
+
if (result != null && typeof result !== "boolean") throw new TypeError(`\`output.codeSplitting.groups[].test\` returned ${typeof result} for module "${ids[index]}", but expected a boolean, null or undefined.`);
|
|
3096
|
+
results[index] = result === true ? 1 : 0;
|
|
3097
|
+
}
|
|
3098
|
+
return results;
|
|
3099
|
+
};
|
|
3100
|
+
}
|
|
3101
|
+
/**
|
|
3102
|
+
* This is the `name` equivalent of {@linkcode batchTest}. The context wrapper holds no per-call
|
|
3103
|
+
* state, so one instance serves the whole batch.
|
|
3104
|
+
*/
|
|
3105
|
+
function batchName(name, pluginContextData) {
|
|
3106
|
+
return (ids, bindingContext) => {
|
|
3107
|
+
const context = new ChunkingContextImpl(bindingContext, pluginContextData);
|
|
3108
|
+
const results = [];
|
|
3109
|
+
for (let index = 0; index < ids.length; index++) {
|
|
3110
|
+
const result = name(ids[index], context);
|
|
3111
|
+
if (result != null && typeof result !== "string") throw new TypeError(`\`output.codeSplitting.groups[].name\` returned ${typeof result} for module "${ids[index]}", but expected a string, null or undefined.`);
|
|
3112
|
+
results.push(result);
|
|
3113
|
+
}
|
|
3114
|
+
return results;
|
|
3115
|
+
};
|
|
3116
|
+
}
|
|
3074
3117
|
//#endregion
|
|
3075
3118
|
//#region src/utils/initialize-parallel-plugins.ts
|
|
3076
3119
|
var import_binding = /* @__PURE__ */ __toESM(require_binding(), 1);
|