@shijiu/jsview 1.9.839 → 1.9.840

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shijiu/jsview",
3
- "version": "1.9.839",
3
+ "version": "1.9.840",
4
4
  "bin": {
5
5
  "jsview-post-build": "./tools/jsview-post-build.js",
6
6
  "jsview-post-install": "./tools/jsview-post-install.js"
@@ -31,8 +31,10 @@ const jsviewConfig = defineConfig({
31
31
  entryFileNames: 'js/main.jsv.[hash].js',
32
32
  format: 'esm',
33
33
  manualChunks: {
34
- 'export-sfc': ['\0plugin-vue:export-helper'], // 将_export_sfc独立出来,防止被集成在jsview-vue中导致import deadloop.
35
- 'vue': ['vue'], // 将vue独立出来,防止被集成在main.js中导致import deadloop.
34
+ 'vue-tarball': [ // 将vue和_export_sfc独立出来,防止被集成在其他js中导致import deadloop.
35
+ 'vue',
36
+ '\0plugin-vue:export-helper'
37
+ ],
36
38
  },
37
39
  },
38
40
  },