vite-plus 0.1.21 → 0.1.22
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/AGENTS.md +1 -0
- package/binding/index.cjs +53 -52
- package/binding/index.d.cts +10 -0
- package/dist/{agent-D2ocSU01.js → agent-BWLe0i9g.js} +34 -17
- package/dist/bin.js +8 -14
- package/dist/{cli-truncate-DJcN4dJ8.js → cli-truncate-B62YnW2m.js} +2 -2
- package/dist/{compat-DdC7fHjB.js → compat-OlmU9EQz.js} +1 -1
- package/dist/config/bin.js +4 -4
- package/dist/constants-kDaYqyWd.js +28 -0
- package/dist/create/bin.js +91 -24
- package/dist/{define-config-cWg3Z2bC.d.ts → define-config-IMCGDS2K.d.ts} +1 -1
- package/dist/define-config.d.ts +1 -1
- package/dist/define-config.js +1 -1
- package/dist/dist-DZfItHAr.js +3 -0
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/{log-update-CLxR0iRf.js → log-update-NRrY6krx.js} +3 -3
- package/dist/{main-A6UrSTYb.js → main-DhsO6ndq.js} +1 -28
- package/dist/migration/bin.js +9 -9
- package/dist/oxlint-plugin-config-BkQeR4FR.js +37 -0
- package/dist/oxlint-plugin.d.ts +8 -0
- package/dist/oxlint-plugin.js +91 -0
- package/dist/pack-bin.js +1 -1
- package/dist/pack.d.ts +1 -1
- package/dist/{package-CrKanQYM.js → package-BoLLED6j.js} +2 -1
- package/dist/{slice-ansi-CwJYd1aw.js → slice-ansi-e4todZeH.js} +1 -1
- package/dist/staged/bin.js +8 -8
- package/dist/{tsconfig-lBAWm4sf.js → tsconfig-BVyzXJ_o.js} +1 -1
- package/dist/version.js +5 -5
- package/dist/versions.js +1 -1
- package/dist/{workspace-QXeJWs3P.js → workspace-Bi_9spVt.js} +5 -6
- package/dist/wrap-ansi-3S3qJ7j8.js +2 -0
- package/dist/{wrap-ansi-Dy0LjO7Q.js → wrap-ansi-DtUeUCjE.js} +1 -1
- package/docs/guide/create.md +3 -1
- package/docs/guide/env.md +23 -1
- package/docs/guide/install.md +4 -0
- package/docs/package.json +3 -1
- package/docs/pnpm-lock.yaml +798 -62
- package/package.json +21 -13
- package/dist/dist-D2_BiE1V.js +0 -3
- package/dist/wrap-ansi-DbY7Idw_.js +0 -2
- /package/dist/{define-config-B62DkkqH.js → define-config-CzWdQTt2.js} +0 -0
- /package/dist/{dist-DjG9AYbK.js → dist-owlRxmBM.js} +0 -0
- /package/dist/{help-BtkjXtRM.js → help-DK5wuu34.js} +0 -0
- /package/dist/{lib-BamM40b7.js → lib-DpwyUJWo.js} +0 -0
- /package/dist/{pack-BcBvbQgt.d.ts → pack-K7H72Cum.d.ts} +0 -0
- /package/dist/{report-DbrfjWiP.js → report-CYPv1VK1.js} +0 -0
- /package/dist/{resolve-vite-config-C1KX9CZU.js → resolve-vite-config-C5AjksTj.js} +0 -0
- /package/dist/{strip-ansi-D86nYqKl.js → strip-ansi-D-eYYcD2.js} +0 -0
- /package/dist/{terminal-CxTMfsxZ.js → terminal-D_Kg-AA6.js} +0 -0
package/AGENTS.md
CHANGED
|
@@ -11,5 +11,6 @@ Docs are local at `node_modules/vite-plus/docs` or online at https://viteplus.de
|
|
|
11
11
|
- [ ] Run `vp install` after pulling remote changes and before getting started.
|
|
12
12
|
- [ ] Run `vp check` and `vp test` to format, lint, type check and test changes.
|
|
13
13
|
- [ ] Check if there are `vite.config.ts` tasks or `package.json` scripts necessary for validation, run via `vp run <script>`.
|
|
14
|
+
- [ ] If setup, runtime, or package-manager behavior looks wrong, run `vp env doctor` and include its output when asking for help.
|
|
14
15
|
|
|
15
16
|
<!--VITE PLUS END-->
|
package/binding/index.cjs
CHANGED
|
@@ -81,12 +81,12 @@ function requireNative() {
|
|
|
81
81
|
const bindingPackageVersion =
|
|
82
82
|
require('@voidzero-dev/vite-plus-android-arm64/package.json').version;
|
|
83
83
|
if (
|
|
84
|
-
bindingPackageVersion !== '0.
|
|
84
|
+
bindingPackageVersion !== '0.1.22' &&
|
|
85
85
|
process.env.NAPI_RS_ENFORCE_VERSION_CHECK &&
|
|
86
86
|
process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0'
|
|
87
87
|
) {
|
|
88
88
|
throw new Error(
|
|
89
|
-
`Native binding package version mismatch, expected 0.
|
|
89
|
+
`Native binding package version mismatch, expected 0.1.22 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`,
|
|
90
90
|
);
|
|
91
91
|
}
|
|
92
92
|
return binding;
|
|
@@ -104,12 +104,12 @@ function requireNative() {
|
|
|
104
104
|
const bindingPackageVersion =
|
|
105
105
|
require('@voidzero-dev/vite-plus-android-arm-eabi/package.json').version;
|
|
106
106
|
if (
|
|
107
|
-
bindingPackageVersion !== '0.
|
|
107
|
+
bindingPackageVersion !== '0.1.22' &&
|
|
108
108
|
process.env.NAPI_RS_ENFORCE_VERSION_CHECK &&
|
|
109
109
|
process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0'
|
|
110
110
|
) {
|
|
111
111
|
throw new Error(
|
|
112
|
-
`Native binding package version mismatch, expected 0.
|
|
112
|
+
`Native binding package version mismatch, expected 0.1.22 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`,
|
|
113
113
|
);
|
|
114
114
|
}
|
|
115
115
|
return binding;
|
|
@@ -135,12 +135,12 @@ function requireNative() {
|
|
|
135
135
|
const bindingPackageVersion =
|
|
136
136
|
require('@voidzero-dev/vite-plus-win32-x64-gnu/package.json').version;
|
|
137
137
|
if (
|
|
138
|
-
bindingPackageVersion !== '0.
|
|
138
|
+
bindingPackageVersion !== '0.1.22' &&
|
|
139
139
|
process.env.NAPI_RS_ENFORCE_VERSION_CHECK &&
|
|
140
140
|
process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0'
|
|
141
141
|
) {
|
|
142
142
|
throw new Error(
|
|
143
|
-
`Native binding package version mismatch, expected 0.
|
|
143
|
+
`Native binding package version mismatch, expected 0.1.22 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`,
|
|
144
144
|
);
|
|
145
145
|
}
|
|
146
146
|
return binding;
|
|
@@ -158,12 +158,12 @@ function requireNative() {
|
|
|
158
158
|
const bindingPackageVersion =
|
|
159
159
|
require('@voidzero-dev/vite-plus-win32-x64-msvc/package.json').version;
|
|
160
160
|
if (
|
|
161
|
-
bindingPackageVersion !== '0.
|
|
161
|
+
bindingPackageVersion !== '0.1.22' &&
|
|
162
162
|
process.env.NAPI_RS_ENFORCE_VERSION_CHECK &&
|
|
163
163
|
process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0'
|
|
164
164
|
) {
|
|
165
165
|
throw new Error(
|
|
166
|
-
`Native binding package version mismatch, expected 0.
|
|
166
|
+
`Native binding package version mismatch, expected 0.1.22 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`,
|
|
167
167
|
);
|
|
168
168
|
}
|
|
169
169
|
return binding;
|
|
@@ -182,12 +182,12 @@ function requireNative() {
|
|
|
182
182
|
const bindingPackageVersion =
|
|
183
183
|
require('@voidzero-dev/vite-plus-win32-ia32-msvc/package.json').version;
|
|
184
184
|
if (
|
|
185
|
-
bindingPackageVersion !== '0.
|
|
185
|
+
bindingPackageVersion !== '0.1.22' &&
|
|
186
186
|
process.env.NAPI_RS_ENFORCE_VERSION_CHECK &&
|
|
187
187
|
process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0'
|
|
188
188
|
) {
|
|
189
189
|
throw new Error(
|
|
190
|
-
`Native binding package version mismatch, expected 0.
|
|
190
|
+
`Native binding package version mismatch, expected 0.1.22 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`,
|
|
191
191
|
);
|
|
192
192
|
}
|
|
193
193
|
return binding;
|
|
@@ -205,12 +205,12 @@ function requireNative() {
|
|
|
205
205
|
const bindingPackageVersion =
|
|
206
206
|
require('@voidzero-dev/vite-plus-win32-arm64-msvc/package.json').version;
|
|
207
207
|
if (
|
|
208
|
-
bindingPackageVersion !== '0.
|
|
208
|
+
bindingPackageVersion !== '0.1.22' &&
|
|
209
209
|
process.env.NAPI_RS_ENFORCE_VERSION_CHECK &&
|
|
210
210
|
process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0'
|
|
211
211
|
) {
|
|
212
212
|
throw new Error(
|
|
213
|
-
`Native binding package version mismatch, expected 0.
|
|
213
|
+
`Native binding package version mismatch, expected 0.1.22 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`,
|
|
214
214
|
);
|
|
215
215
|
}
|
|
216
216
|
return binding;
|
|
@@ -231,12 +231,12 @@ function requireNative() {
|
|
|
231
231
|
const bindingPackageVersion =
|
|
232
232
|
require('@voidzero-dev/vite-plus-darwin-universal/package.json').version;
|
|
233
233
|
if (
|
|
234
|
-
bindingPackageVersion !== '0.
|
|
234
|
+
bindingPackageVersion !== '0.1.22' &&
|
|
235
235
|
process.env.NAPI_RS_ENFORCE_VERSION_CHECK &&
|
|
236
236
|
process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0'
|
|
237
237
|
) {
|
|
238
238
|
throw new Error(
|
|
239
|
-
`Native binding package version mismatch, expected 0.
|
|
239
|
+
`Native binding package version mismatch, expected 0.1.22 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`,
|
|
240
240
|
);
|
|
241
241
|
}
|
|
242
242
|
return binding;
|
|
@@ -254,12 +254,12 @@ function requireNative() {
|
|
|
254
254
|
const bindingPackageVersion =
|
|
255
255
|
require('@voidzero-dev/vite-plus-darwin-x64/package.json').version;
|
|
256
256
|
if (
|
|
257
|
-
bindingPackageVersion !== '0.
|
|
257
|
+
bindingPackageVersion !== '0.1.22' &&
|
|
258
258
|
process.env.NAPI_RS_ENFORCE_VERSION_CHECK &&
|
|
259
259
|
process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0'
|
|
260
260
|
) {
|
|
261
261
|
throw new Error(
|
|
262
|
-
`Native binding package version mismatch, expected 0.
|
|
262
|
+
`Native binding package version mismatch, expected 0.1.22 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`,
|
|
263
263
|
);
|
|
264
264
|
}
|
|
265
265
|
return binding;
|
|
@@ -277,12 +277,12 @@ function requireNative() {
|
|
|
277
277
|
const bindingPackageVersion =
|
|
278
278
|
require('@voidzero-dev/vite-plus-darwin-arm64/package.json').version;
|
|
279
279
|
if (
|
|
280
|
-
bindingPackageVersion !== '0.
|
|
280
|
+
bindingPackageVersion !== '0.1.22' &&
|
|
281
281
|
process.env.NAPI_RS_ENFORCE_VERSION_CHECK &&
|
|
282
282
|
process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0'
|
|
283
283
|
) {
|
|
284
284
|
throw new Error(
|
|
285
|
-
`Native binding package version mismatch, expected 0.
|
|
285
|
+
`Native binding package version mismatch, expected 0.1.22 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`,
|
|
286
286
|
);
|
|
287
287
|
}
|
|
288
288
|
return binding;
|
|
@@ -304,12 +304,12 @@ function requireNative() {
|
|
|
304
304
|
const bindingPackageVersion =
|
|
305
305
|
require('@voidzero-dev/vite-plus-freebsd-x64/package.json').version;
|
|
306
306
|
if (
|
|
307
|
-
bindingPackageVersion !== '0.
|
|
307
|
+
bindingPackageVersion !== '0.1.22' &&
|
|
308
308
|
process.env.NAPI_RS_ENFORCE_VERSION_CHECK &&
|
|
309
309
|
process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0'
|
|
310
310
|
) {
|
|
311
311
|
throw new Error(
|
|
312
|
-
`Native binding package version mismatch, expected 0.
|
|
312
|
+
`Native binding package version mismatch, expected 0.1.22 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`,
|
|
313
313
|
);
|
|
314
314
|
}
|
|
315
315
|
return binding;
|
|
@@ -327,12 +327,12 @@ function requireNative() {
|
|
|
327
327
|
const bindingPackageVersion =
|
|
328
328
|
require('@voidzero-dev/vite-plus-freebsd-arm64/package.json').version;
|
|
329
329
|
if (
|
|
330
|
-
bindingPackageVersion !== '0.
|
|
330
|
+
bindingPackageVersion !== '0.1.22' &&
|
|
331
331
|
process.env.NAPI_RS_ENFORCE_VERSION_CHECK &&
|
|
332
332
|
process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0'
|
|
333
333
|
) {
|
|
334
334
|
throw new Error(
|
|
335
|
-
`Native binding package version mismatch, expected 0.
|
|
335
|
+
`Native binding package version mismatch, expected 0.1.22 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`,
|
|
336
336
|
);
|
|
337
337
|
}
|
|
338
338
|
return binding;
|
|
@@ -355,12 +355,12 @@ function requireNative() {
|
|
|
355
355
|
const bindingPackageVersion =
|
|
356
356
|
require('@voidzero-dev/vite-plus-linux-x64-musl/package.json').version;
|
|
357
357
|
if (
|
|
358
|
-
bindingPackageVersion !== '0.
|
|
358
|
+
bindingPackageVersion !== '0.1.22' &&
|
|
359
359
|
process.env.NAPI_RS_ENFORCE_VERSION_CHECK &&
|
|
360
360
|
process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0'
|
|
361
361
|
) {
|
|
362
362
|
throw new Error(
|
|
363
|
-
`Native binding package version mismatch, expected 0.
|
|
363
|
+
`Native binding package version mismatch, expected 0.1.22 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`,
|
|
364
364
|
);
|
|
365
365
|
}
|
|
366
366
|
return binding;
|
|
@@ -378,12 +378,12 @@ function requireNative() {
|
|
|
378
378
|
const bindingPackageVersion =
|
|
379
379
|
require('@voidzero-dev/vite-plus-linux-x64-gnu/package.json').version;
|
|
380
380
|
if (
|
|
381
|
-
bindingPackageVersion !== '0.
|
|
381
|
+
bindingPackageVersion !== '0.1.22' &&
|
|
382
382
|
process.env.NAPI_RS_ENFORCE_VERSION_CHECK &&
|
|
383
383
|
process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0'
|
|
384
384
|
) {
|
|
385
385
|
throw new Error(
|
|
386
|
-
`Native binding package version mismatch, expected 0.
|
|
386
|
+
`Native binding package version mismatch, expected 0.1.22 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`,
|
|
387
387
|
);
|
|
388
388
|
}
|
|
389
389
|
return binding;
|
|
@@ -403,12 +403,12 @@ function requireNative() {
|
|
|
403
403
|
const bindingPackageVersion =
|
|
404
404
|
require('@voidzero-dev/vite-plus-linux-arm64-musl/package.json').version;
|
|
405
405
|
if (
|
|
406
|
-
bindingPackageVersion !== '0.
|
|
406
|
+
bindingPackageVersion !== '0.1.22' &&
|
|
407
407
|
process.env.NAPI_RS_ENFORCE_VERSION_CHECK &&
|
|
408
408
|
process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0'
|
|
409
409
|
) {
|
|
410
410
|
throw new Error(
|
|
411
|
-
`Native binding package version mismatch, expected 0.
|
|
411
|
+
`Native binding package version mismatch, expected 0.1.22 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`,
|
|
412
412
|
);
|
|
413
413
|
}
|
|
414
414
|
return binding;
|
|
@@ -426,12 +426,12 @@ function requireNative() {
|
|
|
426
426
|
const bindingPackageVersion =
|
|
427
427
|
require('@voidzero-dev/vite-plus-linux-arm64-gnu/package.json').version;
|
|
428
428
|
if (
|
|
429
|
-
bindingPackageVersion !== '0.
|
|
429
|
+
bindingPackageVersion !== '0.1.22' &&
|
|
430
430
|
process.env.NAPI_RS_ENFORCE_VERSION_CHECK &&
|
|
431
431
|
process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0'
|
|
432
432
|
) {
|
|
433
433
|
throw new Error(
|
|
434
|
-
`Native binding package version mismatch, expected 0.
|
|
434
|
+
`Native binding package version mismatch, expected 0.1.22 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`,
|
|
435
435
|
);
|
|
436
436
|
}
|
|
437
437
|
return binding;
|
|
@@ -451,12 +451,12 @@ function requireNative() {
|
|
|
451
451
|
const bindingPackageVersion =
|
|
452
452
|
require('@voidzero-dev/vite-plus-linux-arm-musleabihf/package.json').version;
|
|
453
453
|
if (
|
|
454
|
-
bindingPackageVersion !== '0.
|
|
454
|
+
bindingPackageVersion !== '0.1.22' &&
|
|
455
455
|
process.env.NAPI_RS_ENFORCE_VERSION_CHECK &&
|
|
456
456
|
process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0'
|
|
457
457
|
) {
|
|
458
458
|
throw new Error(
|
|
459
|
-
`Native binding package version mismatch, expected 0.
|
|
459
|
+
`Native binding package version mismatch, expected 0.1.22 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`,
|
|
460
460
|
);
|
|
461
461
|
}
|
|
462
462
|
return binding;
|
|
@@ -474,12 +474,12 @@ function requireNative() {
|
|
|
474
474
|
const bindingPackageVersion =
|
|
475
475
|
require('@voidzero-dev/vite-plus-linux-arm-gnueabihf/package.json').version;
|
|
476
476
|
if (
|
|
477
|
-
bindingPackageVersion !== '0.
|
|
477
|
+
bindingPackageVersion !== '0.1.22' &&
|
|
478
478
|
process.env.NAPI_RS_ENFORCE_VERSION_CHECK &&
|
|
479
479
|
process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0'
|
|
480
480
|
) {
|
|
481
481
|
throw new Error(
|
|
482
|
-
`Native binding package version mismatch, expected 0.
|
|
482
|
+
`Native binding package version mismatch, expected 0.1.22 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`,
|
|
483
483
|
);
|
|
484
484
|
}
|
|
485
485
|
return binding;
|
|
@@ -499,12 +499,12 @@ function requireNative() {
|
|
|
499
499
|
const bindingPackageVersion =
|
|
500
500
|
require('@voidzero-dev/vite-plus-linux-loong64-musl/package.json').version;
|
|
501
501
|
if (
|
|
502
|
-
bindingPackageVersion !== '0.
|
|
502
|
+
bindingPackageVersion !== '0.1.22' &&
|
|
503
503
|
process.env.NAPI_RS_ENFORCE_VERSION_CHECK &&
|
|
504
504
|
process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0'
|
|
505
505
|
) {
|
|
506
506
|
throw new Error(
|
|
507
|
-
`Native binding package version mismatch, expected 0.
|
|
507
|
+
`Native binding package version mismatch, expected 0.1.22 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`,
|
|
508
508
|
);
|
|
509
509
|
}
|
|
510
510
|
return binding;
|
|
@@ -522,12 +522,12 @@ function requireNative() {
|
|
|
522
522
|
const bindingPackageVersion =
|
|
523
523
|
require('@voidzero-dev/vite-plus-linux-loong64-gnu/package.json').version;
|
|
524
524
|
if (
|
|
525
|
-
bindingPackageVersion !== '0.
|
|
525
|
+
bindingPackageVersion !== '0.1.22' &&
|
|
526
526
|
process.env.NAPI_RS_ENFORCE_VERSION_CHECK &&
|
|
527
527
|
process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0'
|
|
528
528
|
) {
|
|
529
529
|
throw new Error(
|
|
530
|
-
`Native binding package version mismatch, expected 0.
|
|
530
|
+
`Native binding package version mismatch, expected 0.1.22 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`,
|
|
531
531
|
);
|
|
532
532
|
}
|
|
533
533
|
return binding;
|
|
@@ -547,12 +547,12 @@ function requireNative() {
|
|
|
547
547
|
const bindingPackageVersion =
|
|
548
548
|
require('@voidzero-dev/vite-plus-linux-riscv64-musl/package.json').version;
|
|
549
549
|
if (
|
|
550
|
-
bindingPackageVersion !== '0.
|
|
550
|
+
bindingPackageVersion !== '0.1.22' &&
|
|
551
551
|
process.env.NAPI_RS_ENFORCE_VERSION_CHECK &&
|
|
552
552
|
process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0'
|
|
553
553
|
) {
|
|
554
554
|
throw new Error(
|
|
555
|
-
`Native binding package version mismatch, expected 0.
|
|
555
|
+
`Native binding package version mismatch, expected 0.1.22 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`,
|
|
556
556
|
);
|
|
557
557
|
}
|
|
558
558
|
return binding;
|
|
@@ -570,12 +570,12 @@ function requireNative() {
|
|
|
570
570
|
const bindingPackageVersion =
|
|
571
571
|
require('@voidzero-dev/vite-plus-linux-riscv64-gnu/package.json').version;
|
|
572
572
|
if (
|
|
573
|
-
bindingPackageVersion !== '0.
|
|
573
|
+
bindingPackageVersion !== '0.1.22' &&
|
|
574
574
|
process.env.NAPI_RS_ENFORCE_VERSION_CHECK &&
|
|
575
575
|
process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0'
|
|
576
576
|
) {
|
|
577
577
|
throw new Error(
|
|
578
|
-
`Native binding package version mismatch, expected 0.
|
|
578
|
+
`Native binding package version mismatch, expected 0.1.22 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`,
|
|
579
579
|
);
|
|
580
580
|
}
|
|
581
581
|
return binding;
|
|
@@ -594,12 +594,12 @@ function requireNative() {
|
|
|
594
594
|
const bindingPackageVersion =
|
|
595
595
|
require('@voidzero-dev/vite-plus-linux-ppc64-gnu/package.json').version;
|
|
596
596
|
if (
|
|
597
|
-
bindingPackageVersion !== '0.
|
|
597
|
+
bindingPackageVersion !== '0.1.22' &&
|
|
598
598
|
process.env.NAPI_RS_ENFORCE_VERSION_CHECK &&
|
|
599
599
|
process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0'
|
|
600
600
|
) {
|
|
601
601
|
throw new Error(
|
|
602
|
-
`Native binding package version mismatch, expected 0.
|
|
602
|
+
`Native binding package version mismatch, expected 0.1.22 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`,
|
|
603
603
|
);
|
|
604
604
|
}
|
|
605
605
|
return binding;
|
|
@@ -617,12 +617,12 @@ function requireNative() {
|
|
|
617
617
|
const bindingPackageVersion =
|
|
618
618
|
require('@voidzero-dev/vite-plus-linux-s390x-gnu/package.json').version;
|
|
619
619
|
if (
|
|
620
|
-
bindingPackageVersion !== '0.
|
|
620
|
+
bindingPackageVersion !== '0.1.22' &&
|
|
621
621
|
process.env.NAPI_RS_ENFORCE_VERSION_CHECK &&
|
|
622
622
|
process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0'
|
|
623
623
|
) {
|
|
624
624
|
throw new Error(
|
|
625
|
-
`Native binding package version mismatch, expected 0.
|
|
625
|
+
`Native binding package version mismatch, expected 0.1.22 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`,
|
|
626
626
|
);
|
|
627
627
|
}
|
|
628
628
|
return binding;
|
|
@@ -644,12 +644,12 @@ function requireNative() {
|
|
|
644
644
|
const bindingPackageVersion =
|
|
645
645
|
require('@voidzero-dev/vite-plus-openharmony-arm64/package.json').version;
|
|
646
646
|
if (
|
|
647
|
-
bindingPackageVersion !== '0.
|
|
647
|
+
bindingPackageVersion !== '0.1.22' &&
|
|
648
648
|
process.env.NAPI_RS_ENFORCE_VERSION_CHECK &&
|
|
649
649
|
process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0'
|
|
650
650
|
) {
|
|
651
651
|
throw new Error(
|
|
652
|
-
`Native binding package version mismatch, expected 0.
|
|
652
|
+
`Native binding package version mismatch, expected 0.1.22 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`,
|
|
653
653
|
);
|
|
654
654
|
}
|
|
655
655
|
return binding;
|
|
@@ -667,12 +667,12 @@ function requireNative() {
|
|
|
667
667
|
const bindingPackageVersion =
|
|
668
668
|
require('@voidzero-dev/vite-plus-openharmony-x64/package.json').version;
|
|
669
669
|
if (
|
|
670
|
-
bindingPackageVersion !== '0.
|
|
670
|
+
bindingPackageVersion !== '0.1.22' &&
|
|
671
671
|
process.env.NAPI_RS_ENFORCE_VERSION_CHECK &&
|
|
672
672
|
process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0'
|
|
673
673
|
) {
|
|
674
674
|
throw new Error(
|
|
675
|
-
`Native binding package version mismatch, expected 0.
|
|
675
|
+
`Native binding package version mismatch, expected 0.1.22 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`,
|
|
676
676
|
);
|
|
677
677
|
}
|
|
678
678
|
return binding;
|
|
@@ -690,12 +690,12 @@ function requireNative() {
|
|
|
690
690
|
const bindingPackageVersion =
|
|
691
691
|
require('@voidzero-dev/vite-plus-openharmony-arm/package.json').version;
|
|
692
692
|
if (
|
|
693
|
-
bindingPackageVersion !== '0.
|
|
693
|
+
bindingPackageVersion !== '0.1.22' &&
|
|
694
694
|
process.env.NAPI_RS_ENFORCE_VERSION_CHECK &&
|
|
695
695
|
process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0'
|
|
696
696
|
) {
|
|
697
697
|
throw new Error(
|
|
698
|
-
`Native binding package version mismatch, expected 0.
|
|
698
|
+
`Native binding package version mismatch, expected 0.1.22 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`,
|
|
699
699
|
);
|
|
700
700
|
}
|
|
701
701
|
return binding;
|
|
@@ -767,6 +767,7 @@ if (!nativeBinding) {
|
|
|
767
767
|
module.exports = nativeBinding;
|
|
768
768
|
module.exports.detectWorkspace = nativeBinding.detectWorkspace;
|
|
769
769
|
module.exports.downloadPackageManager = nativeBinding.downloadPackageManager;
|
|
770
|
+
module.exports.hasConfigKey = nativeBinding.hasConfigKey;
|
|
770
771
|
module.exports.mergeJsonConfig = nativeBinding.mergeJsonConfig;
|
|
771
772
|
module.exports.mergeTsdownConfig = nativeBinding.mergeTsdownConfig;
|
|
772
773
|
module.exports.rewriteEslint = nativeBinding.rewriteEslint;
|
package/binding/index.d.cts
CHANGED
|
@@ -116,6 +116,16 @@ export interface DownloadPackageManagerResult {
|
|
|
116
116
|
version: string;
|
|
117
117
|
}
|
|
118
118
|
|
|
119
|
+
/**
|
|
120
|
+
* Whether `config_key` is already declared as a top-level property in the
|
|
121
|
+
* vite config's `defineConfig({...})` (or equivalent) object literal.
|
|
122
|
+
*
|
|
123
|
+
* AST-based check covering the six shapes the merger understands; ignores
|
|
124
|
+
* comments, string literal occurrences, and nested keys. Returns `false`
|
|
125
|
+
* for unrecognized shapes (e.g. `return $VAR` from a callback).
|
|
126
|
+
*/
|
|
127
|
+
export declare function hasConfigKey(viteConfigPath: string, configKey: string): boolean;
|
|
128
|
+
|
|
119
129
|
/** Result returned by JavaScript resolver functions. */
|
|
120
130
|
export interface JsCommandResolvedResult {
|
|
121
131
|
binPath: string;
|
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
import { r as __toESM, t as __commonJSMin } from "./chunk-q7NCDQ7-.js";
|
|
2
|
-
import {
|
|
3
|
-
import { i as
|
|
4
|
-
import { t as
|
|
5
|
-
import { t as
|
|
6
|
-
import {
|
|
7
|
-
import { n as
|
|
2
|
+
import { a as VITE_PLUS_VERSION, i as VITE_PLUS_OVERRIDE_PACKAGES, o as isForceOverrideMode, r as VITE_PLUS_NAME, t as BASEURL_TSCONFIG_WARNING } from "./constants-kDaYqyWd.js";
|
|
3
|
+
import { i as ensureVitePlusImportRuleDefaults, r as createDefaultVitePlusLintConfig } from "./oxlint-plugin-config-BkQeR4FR.js";
|
|
4
|
+
import { i as rewriteTypesInTsconfig, n as hasBaseUrlInTsconfig, o as runCommandSilently, r as removeDeprecatedTsconfigFalseOption, s as require_cross_spawn, t as findTsconfigFiles } from "./tsconfig-BVyzXJ_o.js";
|
|
5
|
+
import { t as accent } from "./terminal-D_Kg-AA6.js";
|
|
6
|
+
import { t as require_dist } from "./dist-owlRxmBM.js";
|
|
7
|
+
import { c as editJsonFile, l as isJsonFile, n as detectPackageMetadata, u as readJsonFile } from "./package-BoLLED6j.js";
|
|
8
|
+
import { n as addMigrationWarning, t as addManualStep } from "./report-CYPv1VK1.js";
|
|
8
9
|
import path from "node:path";
|
|
9
|
-
import { downloadPackageManager, mergeJsonConfig, mergeTsdownConfig, rewriteEslint, rewriteImportsInDirectory, rewritePrettier, rewriteScripts } from "../binding/index.js";
|
|
10
|
+
import { downloadPackageManager, hasConfigKey, mergeJsonConfig, mergeTsdownConfig, rewriteEslint, rewriteImportsInDirectory, rewritePrettier, rewriteScripts } from "../binding/index.js";
|
|
10
11
|
import fs from "node:fs";
|
|
11
12
|
import { styleText } from "node:util";
|
|
12
13
|
import process$1, { stdin, stdout } from "node:process";
|
|
@@ -3199,6 +3200,22 @@ async function promptGitHooks(options) {
|
|
|
3199
3200
|
}
|
|
3200
3201
|
return true;
|
|
3201
3202
|
}
|
|
3203
|
+
async function promptGitInit(options) {
|
|
3204
|
+
if (options.git === false) return false;
|
|
3205
|
+
if (options.git === true) return true;
|
|
3206
|
+
if (options.interactive) {
|
|
3207
|
+
const selected = await confirm({
|
|
3208
|
+
message: "Initialize a git repository with an initial commit?",
|
|
3209
|
+
initialValue: false
|
|
3210
|
+
});
|
|
3211
|
+
if (q(selected)) {
|
|
3212
|
+
cancelAndExit();
|
|
3213
|
+
return false;
|
|
3214
|
+
}
|
|
3215
|
+
return selected;
|
|
3216
|
+
}
|
|
3217
|
+
return false;
|
|
3218
|
+
}
|
|
3202
3219
|
function defaultInteractive() {
|
|
3203
3220
|
return !process.env.CI && process.stdin.isTTY;
|
|
3204
3221
|
}
|
|
@@ -4381,7 +4398,8 @@ function mergeViteConfigFiles(projectPath, silent = false, report) {
|
|
|
4381
4398
|
if (oxlintJson.options.typeAware === void 0) oxlintJson.options.typeAware = true;
|
|
4382
4399
|
if (oxlintJson.options.typeCheck === void 0) oxlintJson.options.typeCheck = true;
|
|
4383
4400
|
} else warnMigration(BASEURL_TSCONFIG_WARNING, report);
|
|
4384
|
-
|
|
4401
|
+
const normalizedOxlintConfig = ensureVitePlusImportRuleDefaults(oxlintJson);
|
|
4402
|
+
fs.writeFileSync(fullOxlintPath, JSON.stringify(normalizedOxlintConfig, null, 2));
|
|
4385
4403
|
mergeAndRemoveJsonConfig(projectPath, viteConfig, configs.oxlintConfig, "lint", silent, report);
|
|
4386
4404
|
}
|
|
4387
4405
|
if (configs.oxfmtConfig) mergeAndRemoveJsonConfig(projectPath, viteConfig, configs.oxfmtConfig, "fmt", silent, report);
|
|
@@ -4393,10 +4411,7 @@ function mergeViteConfigFiles(projectPath, silent = false, report) {
|
|
|
4393
4411
|
*/
|
|
4394
4412
|
function injectLintTypeCheckDefaults(projectPath, silent = false, report) {
|
|
4395
4413
|
if (hasBaseUrlInTsconfig(projectPath)) return;
|
|
4396
|
-
injectConfigDefaults(projectPath, "lint", ".vite-plus-lint-init.oxlintrc.json", JSON.stringify({
|
|
4397
|
-
typeAware: true,
|
|
4398
|
-
typeCheck: true
|
|
4399
|
-
} }), silent, report);
|
|
4414
|
+
injectConfigDefaults(projectPath, "lint", ".vite-plus-lint-init.oxlintrc.json", JSON.stringify(createDefaultVitePlusLintConfig({ includeTypeAwareDefaults: true })), silent, report);
|
|
4400
4415
|
}
|
|
4401
4416
|
function injectFmtDefaults(projectPath, silent = false, report) {
|
|
4402
4417
|
injectConfigDefaults(projectPath, "fmt", ".vite-plus-fmt-init.oxfmtrc.json", JSON.stringify({}), silent, report);
|
|
@@ -4415,10 +4430,7 @@ function injectCreateDefaultTemplate(projectPath, scope, silent = false, report)
|
|
|
4415
4430
|
}
|
|
4416
4431
|
function injectConfigDefaults(projectPath, configKey, tempFileName, tempFileContent, silent, report) {
|
|
4417
4432
|
const configs = detectConfigs(projectPath);
|
|
4418
|
-
if (configs.viteConfig)
|
|
4419
|
-
const content = fs.readFileSync(path.join(projectPath, configs.viteConfig), "utf8");
|
|
4420
|
-
if (new RegExp(`\\b${configKey}\\s*:`).test(content)) return;
|
|
4421
|
-
}
|
|
4433
|
+
if (configs.viteConfig && hasConfigKey(path.join(projectPath, configs.viteConfig), configKey)) return;
|
|
4422
4434
|
const viteConfig = ensureViteConfig(projectPath, configs, silent, report);
|
|
4423
4435
|
const tempConfigPath = path.join(projectPath, tempFileName);
|
|
4424
4436
|
fs.writeFileSync(tempConfigPath, tempFileContent);
|
|
@@ -4434,6 +4446,11 @@ function injectConfigDefaults(projectPath, configKey, tempFileName, tempFileCont
|
|
|
4434
4446
|
function mergeAndRemoveJsonConfig(projectPath, viteConfigPath, jsonConfigPath, configKey, silent = false, report) {
|
|
4435
4447
|
const fullViteConfigPath = path.join(projectPath, viteConfigPath);
|
|
4436
4448
|
const fullJsonConfigPath = path.join(projectPath, jsonConfigPath);
|
|
4449
|
+
if (hasConfigKey(fullViteConfigPath, configKey)) {
|
|
4450
|
+
fs.unlinkSync(fullJsonConfigPath);
|
|
4451
|
+
if (!silent) log.info(`${configKey} config already present in ${displayRelative(fullViteConfigPath)} — removed redundant ${displayRelative(fullJsonConfigPath)}`);
|
|
4452
|
+
return;
|
|
4453
|
+
}
|
|
4437
4454
|
const result = mergeJsonConfig(fullViteConfigPath, fullJsonConfigPath, configKey);
|
|
4438
4455
|
if (result.updated) {
|
|
4439
4456
|
fs.writeFileSync(fullViteConfigPath, result.content);
|
|
@@ -5247,4 +5264,4 @@ function getMarkedRange(content, startMarker, endMarker) {
|
|
|
5247
5264
|
};
|
|
5248
5265
|
}
|
|
5249
5266
|
//#endregion
|
|
5250
|
-
export {
|
|
5267
|
+
export { log as $, setPackageManager as A, promptGitInit as B, migratePrettierToOxfmt as C, rewriteMonorepo as D, promptPrettierMigration as E, readYamlFile as F, displayRelative as G, runViteInstall as H, cancelAndExit as I, PackageManager as J, templatesDir as K, defaultInteractive as L, warnPackageLevelEslint as M, warnPackageLevelPrettier as N, rewriteMonorepoProject as O, editYamlFile as P, intro as Q, downloadPackageManager$1 as R, migrateNodeVersionManagerFile as S, promptEslintMigration as T, selectPackageManager as U, runViteFmt as V, upgradeYarn as W, cancel as X, require_semver as Y, confirm as Z, hasStagedConfigInViteConfig as _, writeAgentInstructions as a, require_picocolors as at, mergeViteConfigFiles as b, checkVitestVersion as c, detectEslintProject as d, multiselect as et, detectFramework as f, hasFrameworkShim as g, ensurePreCommitHook as h, updateExistingAgentInstructions as i, text as it, warnLegacyEslintConfig as j, rewriteStandaloneProject as k, confirmEslintMigration as l, detectPrettierProject as m, detectExistingAgentTargetPaths as n, select as nt, addFrameworkShim as o, q as ot, detectNodeVersionManagerFile as p, DependencyType as q, selectAgentTargetPaths as r, spinner as rt, checkViteVersion as s, detectAgentConflicts as t, outro as tt, confirmPrettierMigration as u, injectCreateDefaultTemplate as v, preflightGitHooksSetup as w, migrateEslintToOxlint as x, installGitHooks as y, promptGitHooks as z };
|
package/dist/bin.js
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import { n as
|
|
4
|
-
import { r as
|
|
1
|
+
import { n as DEFAULT_ENVS, r as VITE_PLUS_NAME, s as resolve$1, t as BASEURL_TSCONFIG_WARNING } from "./constants-kDaYqyWd.js";
|
|
2
|
+
import { r as createDefaultVitePlusLintConfig } from "./oxlint-plugin-config-BkQeR4FR.js";
|
|
3
|
+
import { n as hasBaseUrlInTsconfig, o as runCommandSilently } from "./tsconfig-BVyzXJ_o.js";
|
|
4
|
+
import { n as errorMsg, r as log, s as warnMsg, t as accent } from "./terminal-D_Kg-AA6.js";
|
|
5
|
+
import { r as resolveUniversalViteConfig } from "./resolve-vite-config-C5AjksTj.js";
|
|
5
6
|
import path, { dirname, join } from "node:path";
|
|
6
|
-
import { mergeJsonConfig, run } from "../binding/index.js";
|
|
7
|
+
import { hasConfigKey, mergeJsonConfig, run } from "../binding/index.js";
|
|
7
8
|
import fs, { existsSync, realpathSync } from "node:fs";
|
|
8
9
|
import { fileURLToPath } from "node:url";
|
|
9
10
|
import { relative } from "node:path/win32";
|
|
@@ -112,10 +113,6 @@ export default defineConfig({});
|
|
|
112
113
|
`);
|
|
113
114
|
return viteConfigPath;
|
|
114
115
|
}
|
|
115
|
-
function hasConfigKey(viteConfigPath, configKey) {
|
|
116
|
-
const viteConfig = fs.readFileSync(viteConfigPath, "utf8");
|
|
117
|
-
return new RegExp(`\\b${configKey}\\s*:`).test(viteConfig);
|
|
118
|
-
}
|
|
119
116
|
async function vpFmt(cwd, filePath) {
|
|
120
117
|
const { binPath, envs } = await fmt();
|
|
121
118
|
const result = await runCommandSilently({
|
|
@@ -175,12 +172,9 @@ async function applyToolInitConfigToViteConfig(command, args, projectPath = proc
|
|
|
175
172
|
if (spec.configKey === "lint" && hasTriggerFlag(args, ["--init"])) {
|
|
176
173
|
const lintInitConfigPath = path.join(projectPath, ".vite-plus-lint-init.oxlintrc.json");
|
|
177
174
|
const hasBaseUrl = hasBaseUrlInTsconfig(projectPath);
|
|
178
|
-
const
|
|
179
|
-
typeAware: true,
|
|
180
|
-
typeCheck: true
|
|
181
|
-
};
|
|
175
|
+
const initConfig = createDefaultVitePlusLintConfig({ includeTypeAwareDefaults: !hasBaseUrl });
|
|
182
176
|
if (hasBaseUrl) warnMsg(BASEURL_TSCONFIG_WARNING);
|
|
183
|
-
fs.writeFileSync(lintInitConfigPath, JSON.stringify(
|
|
177
|
+
fs.writeFileSync(lintInitConfigPath, JSON.stringify(initConfig));
|
|
184
178
|
const mergeResult = mergeJsonConfig(viteConfigPath, lintInitConfigPath, spec.configKey);
|
|
185
179
|
if (!mergeResult.updated) throw new Error(`Failed to initialize lint config in ${path.basename(viteConfigPath)}`);
|
|
186
180
|
fs.writeFileSync(viteConfigPath, mergeResult.content);
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { n as eastAsianWidth, t as stripAnsi } from "./strip-ansi-
|
|
2
|
-
import { t as sliceAnsi } from "./slice-ansi-
|
|
1
|
+
import { n as eastAsianWidth, t as stripAnsi } from "./strip-ansi-D-eYYcD2.js";
|
|
2
|
+
import { t as sliceAnsi } from "./slice-ansi-e4todZeH.js";
|
|
3
3
|
//#region ../../node_modules/.pnpm/string-width@8.1.0/node_modules/string-width/index.js
|
|
4
4
|
/**
|
|
5
5
|
Logic:
|
package/dist/config/bin.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { a as printHeader, r as log } from "../terminal-
|
|
2
|
-
import { L as defaultInteractive, _ as hasStagedConfigInViteConfig, h as ensurePreCommitHook, i as updateExistingAgentInstructions, z as promptGitHooks } from "../agent-
|
|
3
|
-
import { t as lib_default } from "../lib-
|
|
4
|
-
import { t as renderCliDoc } from "../help-
|
|
1
|
+
import { a as printHeader, r as log } from "../terminal-D_Kg-AA6.js";
|
|
2
|
+
import { L as defaultInteractive, _ as hasStagedConfigInViteConfig, h as ensurePreCommitHook, i as updateExistingAgentInstructions, z as promptGitHooks } from "../agent-BWLe0i9g.js";
|
|
3
|
+
import { t as lib_default } from "../lib-DpwyUJWo.js";
|
|
4
|
+
import { t as renderCliDoc } from "../help-DK5wuu34.js";
|
|
5
5
|
import { join } from "node:path";
|
|
6
6
|
import { existsSync, mkdirSync, rmSync, writeFileSync } from "node:fs";
|
|
7
7
|
import { spawnSync } from "node:child_process";
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { createRequire } from "node:module";
|
|
2
|
+
//#region src/utils/constants.ts
|
|
3
|
+
const VITE_PLUS_NAME = "vite-plus";
|
|
4
|
+
const VITE_PLUS_VERSION = process.env.VP_VERSION || "latest";
|
|
5
|
+
const VITE_PLUS_OVERRIDE_PACKAGES = process.env.VP_OVERRIDE_PACKAGES ? JSON.parse(process.env.VP_OVERRIDE_PACKAGES) : {
|
|
6
|
+
vite: "npm:@voidzero-dev/vite-plus-core@latest",
|
|
7
|
+
vitest: "npm:@voidzero-dev/vite-plus-test@latest"
|
|
8
|
+
};
|
|
9
|
+
/**
|
|
10
|
+
* When VP_FORCE_MIGRATE is set, force full dependency rewriting
|
|
11
|
+
* even for projects already using vite-plus. Used by ecosystem CI to
|
|
12
|
+
* override dependencies with locally built tgz packages.
|
|
13
|
+
*/
|
|
14
|
+
function isForceOverrideMode() {
|
|
15
|
+
return process.env.VP_FORCE_MIGRATE === "1";
|
|
16
|
+
}
|
|
17
|
+
const require = createRequire(import.meta.url);
|
|
18
|
+
function resolve(path) {
|
|
19
|
+
return require.resolve(path, { paths: [process.cwd(), import.meta.dirname] });
|
|
20
|
+
}
|
|
21
|
+
const BASEURL_TSCONFIG_WARNING = "Skipped typeAware/typeCheck: tsconfig.json contains baseUrl which is not yet supported by the oxlint type checker.\n Run `npx @andrewbranch/ts5to6 --fixBaseUrl .` to remove baseUrl from your tsconfig.";
|
|
22
|
+
const DEFAULT_ENVS = {
|
|
23
|
+
JS_RUNTIME_VERSION: process.versions.node,
|
|
24
|
+
JS_RUNTIME_NAME: process.release.name,
|
|
25
|
+
NODE_PACKAGE_MANAGER: "vite-plus"
|
|
26
|
+
};
|
|
27
|
+
//#endregion
|
|
28
|
+
export { VITE_PLUS_VERSION as a, VITE_PLUS_OVERRIDE_PACKAGES as i, DEFAULT_ENVS as n, isForceOverrideMode as o, VITE_PLUS_NAME as r, resolve as s, BASEURL_TSCONFIG_WARNING as t };
|