weapp-vite 6.7.0 → 6.7.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  init_esm_shims
3
- } from "../chunk-GTITIIY3.mjs";
3
+ } from "../chunk-QBSVUTNO.mjs";
4
4
 
5
5
  // src/auto-import-components/resolvers/index.ts
6
6
  init_esm_shims();
@@ -1,13 +1,13 @@
1
1
  import {
2
2
  getCompilerContext
3
- } from "./chunk-EH3FR4SH.mjs";
4
- import "./chunk-ZVO7KLQN.mjs";
5
- import "./chunk-BHF4WHJX.mjs";
6
- import "./chunk-O2ZCPWFG.mjs";
7
- import "./chunk-WFHC5POL.mjs";
3
+ } from "./chunk-2OSU4ACJ.mjs";
4
+ import "./chunk-4XSCGSZ5.mjs";
5
+ import "./chunk-O4WHKAL4.mjs";
6
+ import "./chunk-IWKOTXCO.mjs";
7
+ import "./chunk-3STNMT72.mjs";
8
8
  import {
9
9
  init_esm_shims
10
- } from "./chunk-GTITIIY3.mjs";
10
+ } from "./chunk-QBSVUTNO.mjs";
11
11
 
12
12
  // src/auto-routes.ts
13
13
  init_esm_shims();
@@ -14,16 +14,16 @@ import {
14
14
  templateExtensions,
15
15
  touch,
16
16
  vueExtensions
17
- } from "./chunk-ZVO7KLQN.mjs";
17
+ } from "./chunk-4XSCGSZ5.mjs";
18
18
  import {
19
19
  configureLogger,
20
20
  default as default2
21
- } from "./chunk-WFHC5POL.mjs";
21
+ } from "./chunk-3STNMT72.mjs";
22
22
  import {
23
23
  __commonJS,
24
24
  __toESM,
25
25
  init_esm_shims
26
- } from "./chunk-GTITIIY3.mjs";
26
+ } from "./chunk-QBSVUTNO.mjs";
27
27
 
28
28
  // ../../node_modules/.pnpm/semver@7.7.4/node_modules/semver/internal/debug.js
29
29
  var require_debug = __commonJS({
@@ -6512,6 +6512,7 @@ async function syncVueComponentsDefinition(settings, options) {
6512
6512
  }
6513
6513
  options.syncResolverComponentProps();
6514
6514
  options.preloadResolverComponentMetadata();
6515
+ const outputPath = settings.outputPath;
6515
6516
  const componentNames = collectAllComponentNames(options);
6516
6517
  const nextDefinition = createVueComponentsDefinition(componentNames, options.getComponentMetadata, {
6517
6518
  useTypedComponents: getTypedComponentsSettings(ctx).enabled,
@@ -6522,7 +6523,7 @@ async function syncVueComponentsDefinition(settings, options) {
6522
6523
  const sourcePath = local.entry?.path || local.entry?.jsonPath || local.entry?.templatePath;
6523
6524
  if (sourcePath) {
6524
6525
  return toRelativeImportSpecifier(
6525
- settings.outputPath,
6526
+ outputPath,
6526
6527
  normalizeLocalNavigationSource(sourcePath)
6527
6528
  );
6528
6529
  }
@@ -6534,19 +6535,19 @@ async function syncVueComponentsDefinition(settings, options) {
6534
6535
  return resolveNavigationImport(from);
6535
6536
  }
6536
6537
  });
6537
- if (nextDefinition === outputsState.lastWrittenVueComponentsDefinition && settings.outputPath === outputsState.lastVueComponentsOutputPath) {
6538
+ if (nextDefinition === outputsState.lastWrittenVueComponentsDefinition && outputPath === outputsState.lastVueComponentsOutputPath) {
6538
6539
  return;
6539
6540
  }
6540
6541
  try {
6541
- if (outputsState.lastVueComponentsOutputPath && outputsState.lastVueComponentsOutputPath !== settings.outputPath) {
6542
+ if (outputsState.lastVueComponentsOutputPath && outputsState.lastVueComponentsOutputPath !== outputPath) {
6542
6543
  try {
6543
6544
  await fs4.remove(outputsState.lastVueComponentsOutputPath);
6544
6545
  } catch {
6545
6546
  }
6546
6547
  }
6547
- await fs4.outputFile(settings.outputPath, nextDefinition, "utf8");
6548
+ await fs4.outputFile(outputPath, nextDefinition, "utf8");
6548
6549
  outputsState.lastWrittenVueComponentsDefinition = nextDefinition;
6549
- outputsState.lastVueComponentsOutputPath = settings.outputPath;
6550
+ outputsState.lastVueComponentsOutputPath = outputPath;
6550
6551
  } catch (error) {
6551
6552
  const message = error instanceof Error ? error.message : String(error);
6552
6553
  default2.error(`\u5199\u5165 components.d.ts \u5931\u8D25: ${message}`);
@@ -25738,7 +25739,7 @@ function createAutoRoutesPlugin(ctx) {
25738
25739
  if (!isPagesRelatedPath(id)) {
25739
25740
  return;
25740
25741
  }
25741
- if (event === "create" || event === "delete" || event === "rename" || event === "update") {
25742
+ if (event === "create" || event === "delete" || event === "update") {
25742
25743
  await service.handleFileChange(id, "rename");
25743
25744
  }
25744
25745
  },
@@ -26648,8 +26649,6 @@ function createEntryLoader(options) {
26648
26649
  }
26649
26650
  if (shouldTreatAsComponent) {
26650
26651
  entryTypeOverride = "component";
26651
- } else {
26652
- entryTypeOverride = "lib";
26653
26652
  }
26654
26653
  }
26655
26654
  if (vueEntryPath) {
@@ -33290,7 +33289,11 @@ function parseJsonSafely2(source) {
33290
33289
  }
33291
33290
  }
33292
33291
  function normalizeJsonConfigForPlatform(json, compilerCtx) {
33293
- const platform = compilerCtx?.configService?.platform;
33292
+ const configService = compilerCtx?.configService;
33293
+ if (!configService) {
33294
+ return json;
33295
+ }
33296
+ const platform = configService?.platform;
33294
33297
  if (platform !== "alipay") {
33295
33298
  return json;
33296
33299
  }
@@ -33300,8 +33303,8 @@ function normalizeJsonConfigForPlatform(json, compilerCtx) {
33300
33303
  void 0,
33301
33304
  platform,
33302
33305
  {
33303
- dependencies: compilerCtx.configService.packageJson?.dependencies,
33304
- alipayNpmMode: compilerCtx.configService.weappViteConfig?.npm?.alipayNpmMode
33306
+ dependencies: configService.packageJson?.dependencies,
33307
+ alipayNpmMode: configService.weappViteConfig?.npm?.alipayNpmMode
33305
33308
  }
33306
33309
  );
33307
33310
  if (!source) {
@@ -35241,6 +35244,9 @@ function createRequireMemberExpression(base, name) {
35241
35244
  !t2.isValidIdentifier(name)
35242
35245
  );
35243
35246
  }
35247
+ function getModuleExportName(name) {
35248
+ return t2.isIdentifier(name) ? name.name : name.value;
35249
+ }
35244
35250
  async function transformJsModuleToCjsForAlipay(source) {
35245
35251
  if (!hasEsmSyntax(source)) {
35246
35252
  return source;
@@ -35315,13 +35321,12 @@ async function transformJsModuleToCjsForAlipay(source) {
35315
35321
  ExportDefaultDeclaration(path81) {
35316
35322
  const declaration = path81.node.declaration;
35317
35323
  if (t2.isFunctionDeclaration(declaration) || t2.isClassDeclaration(declaration)) {
35318
- let targetId2 = declaration.id;
35319
- if (!targetId2) {
35320
- targetId2 = path81.scope.generateUidIdentifier("defaultExport");
35321
- declaration.id = targetId2;
35324
+ const exportId = declaration.id ?? path81.scope.generateUidIdentifier("defaultExport");
35325
+ if (!declaration.id) {
35326
+ declaration.id = exportId;
35322
35327
  }
35323
35328
  path81.replaceWith(declaration);
35324
- exportAssignments.push(createExportsAssignment("default", targetId2));
35329
+ exportAssignments.push(createExportsAssignment("default", exportId));
35325
35330
  transformed = true;
35326
35331
  return;
35327
35332
  }
@@ -35365,8 +35370,8 @@ async function transformJsModuleToCjsForAlipay(source) {
35365
35370
  if (!t2.isExportSpecifier(specifier)) {
35366
35371
  continue;
35367
35372
  }
35368
- const localName = t2.isIdentifier(specifier.local) ? specifier.local.name : specifier.local.value;
35369
- const exportedName = t2.isIdentifier(specifier.exported) ? specifier.exported.name : specifier.exported.value;
35373
+ const localName = specifier.local.name;
35374
+ const exportedName = getModuleExportName(specifier.exported);
35370
35375
  statements2.push(createExportsAssignment(exportedName, createRequireMemberExpression(requireId, localName)));
35371
35376
  }
35372
35377
  path81.replaceWithMultiple(statements2);
@@ -35378,8 +35383,8 @@ async function transformJsModuleToCjsForAlipay(source) {
35378
35383
  if (!t2.isExportSpecifier(specifier)) {
35379
35384
  continue;
35380
35385
  }
35381
- const localName = t2.isIdentifier(specifier.local) ? specifier.local.name : specifier.local.value;
35382
- const exportedName = t2.isIdentifier(specifier.exported) ? specifier.exported.name : specifier.exported.value;
35386
+ const localName = specifier.local.name;
35387
+ const exportedName = getModuleExportName(specifier.exported);
35383
35388
  statements.push(createExportsAssignment(exportedName, t2.identifier(localName)));
35384
35389
  }
35385
35390
  path81.replaceWithMultiple(statements);
@@ -35499,7 +35504,7 @@ function createPackageBuilder(ctx, oxcVitePlugin) {
35499
35504
  outDir,
35500
35505
  emptyOutDir: true,
35501
35506
  sourcemap: false,
35502
- minify: true,
35507
+ minify: false,
35503
35508
  target: "es6",
35504
35509
  rolldownOptions: {
35505
35510
  external: [],
@@ -35554,6 +35559,7 @@ function createPackageBuilder(ctx, oxcVitePlugin) {
35554
35559
  to
35555
35560
  );
35556
35561
  }
35562
+ let buildPackage;
35557
35563
  async function runBuildPackage({ dep, outDir, options, isDependenciesCacheOutdate }) {
35558
35564
  const packageInfo = await getPackageInfo(dep);
35559
35565
  if (!packageInfo || !ctx.configService) {
@@ -35639,7 +35645,7 @@ function createPackageBuilder(ctx, oxcVitePlugin) {
35639
35645
  }
35640
35646
  npmLogger.success(`[npm] \`${dep}\` \u4F9D\u8D56\u5904\u7406\u5B8C\u6210!`);
35641
35647
  }
35642
- async function buildPackage({ dep, outDir, options, isDependenciesCacheOutdate }) {
35648
+ buildPackage = async ({ dep, outDir, options, isDependenciesCacheOutdate }) => {
35643
35649
  const taskKey = `${path72.resolve(outDir)}::${dep}`;
35644
35650
  const pending = packageBuildInFlight.get(taskKey);
35645
35651
  if (pending) {
@@ -35657,7 +35663,7 @@ function createPackageBuilder(ctx, oxcVitePlugin) {
35657
35663
  });
35658
35664
  packageBuildInFlight.set(taskKey, task);
35659
35665
  return task;
35660
- }
35666
+ };
35661
35667
  return {
35662
35668
  isMiniprogramPackage,
35663
35669
  shouldSkipBuild,
@@ -37321,7 +37327,7 @@ function createScanService(ctx) {
37321
37327
  vueAppPath = await findVueEntry(appBasename);
37322
37328
  }
37323
37329
  if (!appConfigFile && vueAppPath) {
37324
- const { extractConfigFromVue: extractConfigFromVue2 } = await import("./file-X2RHLBMQ.mjs");
37330
+ const { extractConfigFromVue: extractConfigFromVue2 } = await import("./file-QSNQC5V4.mjs");
37325
37331
  configFromVue = await extractConfigFromVue2(vueAppPath);
37326
37332
  if (configFromVue) {
37327
37333
  appConfigFile = vueAppPath;
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  init_esm_shims
3
- } from "./chunk-GTITIIY3.mjs";
3
+ } from "./chunk-QBSVUTNO.mjs";
4
4
 
5
5
  // src/types/external.ts
6
6
  init_esm_shims();
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  init_esm_shims
3
- } from "./chunk-GTITIIY3.mjs";
3
+ } from "./chunk-QBSVUTNO.mjs";
4
4
 
5
5
  // src/logger.ts
6
6
  init_esm_shims();
@@ -2,7 +2,7 @@ import {
2
2
  __commonJS,
3
3
  __toESM,
4
4
  init_esm_shims
5
- } from "./chunk-GTITIIY3.mjs";
5
+ } from "./chunk-QBSVUTNO.mjs";
6
6
 
7
7
  // ../../node_modules/.pnpm/merge@2.1.1/node_modules/merge/lib/src/index.js
8
8
  var require_src = __commonJS({
@@ -145,7 +145,7 @@ function resolveAutoRoutesMacroImportPath() {
145
145
  }
146
146
  async function resolveAutoRoutesInlineSnapshot() {
147
147
  try {
148
- const { getCompilerContext } = await import("./getInstance-LGESJJFX.mjs");
148
+ const { getCompilerContext } = await import("./getInstance-ENQVNR4D.mjs");
149
149
  const service = getCompilerContext().autoRoutesService;
150
150
  await service?.ensureFresh?.();
151
151
  const reference = service?.getReference?.();
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  init_esm_shims
3
- } from "./chunk-GTITIIY3.mjs";
3
+ } from "./chunk-QBSVUTNO.mjs";
4
4
 
5
5
  // src/json.ts
6
6
  init_esm_shims();
@@ -1,10 +1,10 @@
1
1
  import {
2
2
  default as default2
3
- } from "./chunk-WFHC5POL.mjs";
3
+ } from "./chunk-3STNMT72.mjs";
4
4
  import {
5
5
  __export,
6
6
  init_esm_shims
7
- } from "./chunk-GTITIIY3.mjs";
7
+ } from "./chunk-QBSVUTNO.mjs";
8
8
 
9
9
  // src/mcp.ts
10
10
  init_esm_shims();
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  init_esm_shims
3
- } from "./chunk-GTITIIY3.mjs";
3
+ } from "./chunk-QBSVUTNO.mjs";
4
4
 
5
5
  // src/config.ts
6
6
  init_esm_shims();
@@ -31,11 +31,11 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
31
31
  mod
32
32
  ));
33
33
 
34
- // ../../node_modules/.pnpm/tsup@8.5.1_@microsoft+api-extractor@7.57.6_@types+node@25.3.3__@swc+core@1.15.18_jiti@2_32f1cf8abfc79a928ff84be2ee9fbc37/node_modules/tsup/assets/esm_shims.js
34
+ // ../../node_modules/.pnpm/tsup@8.5.1_@microsoft+api-extractor@7.57.6_@types+node@25.3.3__@swc+core@1.15.18_jiti@2_39d789450ee28bb5a56b1257ed860af4/node_modules/tsup/assets/esm_shims.js
35
35
  import path from "path";
36
36
  import { fileURLToPath } from "url";
37
37
  var init_esm_shims = __esm({
38
- "../../node_modules/.pnpm/tsup@8.5.1_@microsoft+api-extractor@7.57.6_@types+node@25.3.3__@swc+core@1.15.18_jiti@2_32f1cf8abfc79a928ff84be2ee9fbc37/node_modules/tsup/assets/esm_shims.js"() {
38
+ "../../node_modules/.pnpm/tsup@8.5.1_@microsoft+api-extractor@7.57.6_@types+node@25.3.3__@swc+core@1.15.18_jiti@2_39d789450ee28bb5a56b1257ed860af4/node_modules/tsup/assets/esm_shims.js"() {
39
39
  "use strict";
40
40
  }
41
41
  });
@@ -2,10 +2,10 @@ import {
2
2
  getCompilerContext,
3
3
  resetCompilerContext,
4
4
  setActiveCompilerContextKey
5
- } from "./chunk-EH3FR4SH.mjs";
5
+ } from "./chunk-2OSU4ACJ.mjs";
6
6
  import {
7
7
  init_esm_shims
8
- } from "./chunk-GTITIIY3.mjs";
8
+ } from "./chunk-QBSVUTNO.mjs";
9
9
 
10
10
  // src/createContext.ts
11
11
  init_esm_shims();
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  init_esm_shims
3
- } from "./chunk-GTITIIY3.mjs";
3
+ } from "./chunk-QBSVUTNO.mjs";
4
4
 
5
5
  // src/plugins/vue/runtime.ts
6
6
  init_esm_shims();
package/dist/cli.mjs CHANGED
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  createCompilerContext
3
- } from "./chunk-6BLAPZPG.mjs";
3
+ } from "./chunk-UUC4PK4V.mjs";
4
4
  import {
5
5
  DEFAULT_MP_PLATFORM,
6
6
  SHARED_CHUNK_VIRTUAL_PREFIX,
@@ -12,21 +12,21 @@ import {
12
12
  normalizeMiniPlatform,
13
13
  resolveMiniPlatform,
14
14
  resolveWeappConfigFile
15
- } from "./chunk-EH3FR4SH.mjs";
15
+ } from "./chunk-2OSU4ACJ.mjs";
16
16
  import {
17
17
  VERSION
18
- } from "./chunk-ZVO7KLQN.mjs";
18
+ } from "./chunk-4XSCGSZ5.mjs";
19
19
  import {
20
20
  resolveWeappMcpConfig,
21
21
  startWeappViteMcpServer
22
- } from "./chunk-6Y4CQBGL.mjs";
22
+ } from "./chunk-LVU2OZUF.mjs";
23
23
  import {
24
24
  colors,
25
25
  default as default2
26
- } from "./chunk-WFHC5POL.mjs";
26
+ } from "./chunk-3STNMT72.mjs";
27
27
  import {
28
28
  init_esm_shims
29
- } from "./chunk-GTITIIY3.mjs";
29
+ } from "./chunk-QBSVUTNO.mjs";
30
30
 
31
31
  // src/cli.ts
32
32
  init_esm_shims();
package/dist/config.mjs CHANGED
@@ -1,14 +1,14 @@
1
1
  import {
2
2
  defineConfig
3
- } from "./chunk-BHF4WHJX.mjs";
3
+ } from "./chunk-O4WHKAL4.mjs";
4
4
  import {
5
5
  defineAppJson,
6
6
  defineComponentJson,
7
7
  definePageJson,
8
8
  defineSitemapJson,
9
9
  defineThemeJson
10
- } from "./chunk-O2ZCPWFG.mjs";
11
- import "./chunk-GTITIIY3.mjs";
10
+ } from "./chunk-IWKOTXCO.mjs";
11
+ import "./chunk-QBSVUTNO.mjs";
12
12
  export {
13
13
  defineAppJson,
14
14
  defineComponentJson,
@@ -11,8 +11,8 @@ import {
11
11
  isTemplateRequest,
12
12
  touch,
13
13
  touchSync
14
- } from "./chunk-ZVO7KLQN.mjs";
15
- import "./chunk-GTITIIY3.mjs";
14
+ } from "./chunk-4XSCGSZ5.mjs";
15
+ import "./chunk-QBSVUTNO.mjs";
16
16
  export {
17
17
  changeFileExtension,
18
18
  extractConfigFromVue,
@@ -4,10 +4,10 @@ import {
4
4
  getCompilerContext,
5
5
  resetCompilerContext,
6
6
  setActiveCompilerContextKey
7
- } from "./chunk-EH3FR4SH.mjs";
8
- import "./chunk-ZVO7KLQN.mjs";
9
- import "./chunk-WFHC5POL.mjs";
10
- import "./chunk-GTITIIY3.mjs";
7
+ } from "./chunk-2OSU4ACJ.mjs";
8
+ import "./chunk-4XSCGSZ5.mjs";
9
+ import "./chunk-3STNMT72.mjs";
10
+ import "./chunk-QBSVUTNO.mjs";
11
11
  export {
12
12
  createCompilerContext,
13
13
  getActiveCompilerContextKey,
package/dist/index.mjs CHANGED
@@ -1,27 +1,27 @@
1
- import "./chunk-KLC6AUWO.mjs";
1
+ import "./chunk-2Q4QRCG5.mjs";
2
2
  import {
3
3
  createCompilerContext
4
- } from "./chunk-6BLAPZPG.mjs";
5
- import "./chunk-EH3FR4SH.mjs";
6
- import "./chunk-ZVO7KLQN.mjs";
4
+ } from "./chunk-UUC4PK4V.mjs";
5
+ import "./chunk-2OSU4ACJ.mjs";
6
+ import "./chunk-4XSCGSZ5.mjs";
7
7
  import {
8
8
  defineConfig
9
- } from "./chunk-BHF4WHJX.mjs";
9
+ } from "./chunk-O4WHKAL4.mjs";
10
10
  import {
11
11
  defineAppJson,
12
12
  defineComponentJson,
13
13
  definePageJson,
14
14
  defineSitemapJson,
15
15
  defineThemeJson
16
- } from "./chunk-O2ZCPWFG.mjs";
16
+ } from "./chunk-IWKOTXCO.mjs";
17
17
  import {
18
18
  defineEmits,
19
19
  defineProps
20
- } from "./chunk-V4HJMXPN.mjs";
21
- import "./chunk-WFHC5POL.mjs";
20
+ } from "./chunk-XEK4R57H.mjs";
21
+ import "./chunk-3STNMT72.mjs";
22
22
  import {
23
23
  init_esm_shims
24
- } from "./chunk-GTITIIY3.mjs";
24
+ } from "./chunk-QBSVUTNO.mjs";
25
25
 
26
26
  // src/index.ts
27
27
  init_esm_shims();
package/dist/json.mjs CHANGED
@@ -4,8 +4,8 @@ import {
4
4
  definePageJson,
5
5
  defineSitemapJson,
6
6
  defineThemeJson
7
- } from "./chunk-O2ZCPWFG.mjs";
8
- import "./chunk-GTITIIY3.mjs";
7
+ } from "./chunk-IWKOTXCO.mjs";
8
+ import "./chunk-QBSVUTNO.mjs";
9
9
  export {
10
10
  defineAppJson,
11
11
  defineComponentJson,
package/dist/mcp.mjs CHANGED
@@ -5,9 +5,9 @@ import {
5
5
  createWeappViteMcpServer,
6
6
  resolveWeappMcpConfig,
7
7
  startWeappViteMcpServer
8
- } from "./chunk-6Y4CQBGL.mjs";
9
- import "./chunk-WFHC5POL.mjs";
10
- import "./chunk-GTITIIY3.mjs";
8
+ } from "./chunk-LVU2OZUF.mjs";
9
+ import "./chunk-3STNMT72.mjs";
10
+ import "./chunk-QBSVUTNO.mjs";
11
11
  export {
12
12
  DEFAULT_MCP_ENDPOINT,
13
13
  DEFAULT_MCP_HOST,
package/dist/runtime.mjs CHANGED
@@ -2,8 +2,8 @@ import {
2
2
  createWevuComponent,
3
3
  defineEmits,
4
4
  defineProps
5
- } from "./chunk-V4HJMXPN.mjs";
6
- import "./chunk-GTITIIY3.mjs";
5
+ } from "./chunk-XEK4R57H.mjs";
6
+ import "./chunk-QBSVUTNO.mjs";
7
7
  export {
8
8
  createWevuComponent,
9
9
  defineEmits,
package/dist/types.mjs CHANGED
@@ -1,7 +1,7 @@
1
- import "./chunk-KLC6AUWO.mjs";
1
+ import "./chunk-2Q4QRCG5.mjs";
2
2
  import {
3
3
  init_esm_shims
4
- } from "./chunk-GTITIIY3.mjs";
4
+ } from "./chunk-QBSVUTNO.mjs";
5
5
 
6
6
  // src/types/index.ts
7
7
  init_esm_shims();
package/dist/volar.mjs CHANGED
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  init_esm_shims
3
- } from "./chunk-GTITIIY3.mjs";
3
+ } from "./chunk-QBSVUTNO.mjs";
4
4
 
5
5
  // src/volar.ts
6
6
  init_esm_shims();
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "weapp-vite",
3
3
  "type": "module",
4
- "version": "6.7.0",
4
+ "version": "6.7.1",
5
5
  "description": "weapp-vite 一个现代化的小程序打包工具",
6
6
  "author": "ice breaker <1324318532@qq.com>",
7
7
  "license": "MIT",
@@ -94,18 +94,18 @@
94
94
  "@volar/typescript": "^2.4.28",
95
95
  "@vue/compiler-core": "^3.5.29",
96
96
  "@vue/language-core": "^3.2.5",
97
- "comment-json": "^4.5.1",
97
+ "comment-json": "^4.6.2",
98
98
  "debug": "^4.4.3",
99
99
  "fdir": "^6.5.0",
100
100
  "fs-extra": "^11.3.3",
101
101
  "magic-string": "^0.30.21",
102
- "oxc-parser": "^0.115.0",
102
+ "oxc-parser": "^0.116.0",
103
103
  "oxc-walker": "^0.7.0",
104
104
  "pathe": "^2.0.3",
105
105
  "picomatch": "^4.0.3",
106
- "postcss": "^8.5.6",
106
+ "postcss": "^8.5.8",
107
107
  "rolldown": "1.0.0-rc.6",
108
- "rolldown-plugin-dts": "0.22.2",
108
+ "rolldown-plugin-dts": "0.22.3",
109
109
  "typescript": "^5.9.3",
110
110
  "vite": "8.0.0-beta.16",
111
111
  "vite-tsconfig-paths": "^6.1.1",
@@ -122,14 +122,14 @@
122
122
  "rolldown-require": "2.0.6",
123
123
  "vite-plugin-performance": "2.0.1",
124
124
  "weapp-ide-cli": "5.1.0",
125
- "wevu": "6.7.0"
125
+ "wevu": "6.7.1"
126
126
  },
127
127
  "publishConfig": {
128
128
  "access": "public",
129
129
  "registry": "https://registry.npmjs.org"
130
130
  },
131
131
  "devDependencies": {
132
- "@oxc-project/types": "^0.115.0",
132
+ "@oxc-project/types": "^0.116.0",
133
133
  "@tailwindcss/vite": "^4.2.1",
134
134
  "@types/semver": "^7.7.1",
135
135
  "@vitejs/plugin-vue": "^6.0.4",