@pubinfo/vite 2.0.0-beta.7 → 2.0.0-beta.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.mts CHANGED
@@ -25,4 +25,4 @@ declare function defineModuleConfig(config: PubinfoConfig): {
25
25
  openapi?: _pubinfo_unplugin_openapi.Options;
26
26
  };
27
27
 
28
- export { defineModuleConfig, definePubinfoConfig };
28
+ export { type PubinfoConfig, defineModuleConfig, definePubinfoConfig };
package/dist/index.d.ts CHANGED
@@ -25,4 +25,4 @@ declare function defineModuleConfig(config: PubinfoConfig): {
25
25
  openapi?: _pubinfo_unplugin_openapi.Options;
26
26
  };
27
27
 
28
- export { defineModuleConfig, definePubinfoConfig };
28
+ export { type PubinfoConfig, defineModuleConfig, definePubinfoConfig };
package/dist/index.mjs CHANGED
@@ -317,7 +317,10 @@ function createDefaultAppConfig(config) {
317
317
  chunkSizeWarningLimit: 2e3,
318
318
  rollupOptions: {
319
319
  output: {
320
- entryFileNames: `assets/entry/[name]-[hash]-${timestamp}.js`
320
+ entryFileNames: `assets/entry/[name]-[hash]-${timestamp}.js`,
321
+ manualChunks: {
322
+ pubinfo: ["pubinfo"]
323
+ }
321
324
  }
322
325
  }
323
326
  },
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@pubinfo/vite",
3
3
  "type": "module",
4
- "version": "2.0.0-beta.7",
4
+ "version": "2.0.0-beta.9",
5
5
  "exports": {
6
6
  ".": {
7
7
  "types": "./dist/index.d.ts",
@@ -15,7 +15,7 @@
15
15
  "dist"
16
16
  ],
17
17
  "peerDependencies": {
18
- "vue": "^3.5.12",
18
+ "vue": "^3.5.13",
19
19
  "vue-i18n": "^10.0.5"
20
20
  },
21
21
  "dependencies": {