mooho-base-admin-plus 0.1.10 → 0.1.11

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,12 +1,12 @@
1
1
  {
2
2
  "name": "mooho-base-admin-plus",
3
3
  "description": "MOOHO basic framework for admin by Vue3",
4
- "version": "0.1.10",
4
+ "version": "0.1.11",
5
5
  "author": "jinyifan <jinyifan@mooho.com.cn>",
6
6
  "dotnetVersion": "1.3.97",
7
7
  "license": "MIT",
8
8
  "private": false,
9
- "main": "./dist/mooho-base-admin-plus.min.esm.js",
9
+ "main": "./dist/mooho-base-admin-plus.min.js",
10
10
  "module": "./src/index.js",
11
11
  "scripts": {
12
12
  "dev": "vite --open",
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * 布局配置
3
3
  * */
4
- import screenfull from 'screenfull';
4
+ import * as screenfull from 'screenfull';
5
5
 
6
6
  import Setting from '../../../../setting';
7
7
 
package/vite.config.js CHANGED
@@ -31,18 +31,6 @@ export default defineConfig({
31
31
  inlineDynamicImports: false,
32
32
  manualChunks: undefined,
33
33
  globals: { vue: 'Vue', 'view-ui-plus': 'viewUiPlus' }
34
- },
35
- {
36
- format: 'es',
37
- exports: 'named',
38
- sourcemap: false,
39
- entryFileNames: 'mooho-base-admin-plus.min.esm.js',
40
- chunkFileNames: '[name].js',
41
- assetFileNames: '[name].[ext]',
42
- namespaceToStringTag: true,
43
- inlineDynamicImports: false,
44
- manualChunks: undefined,
45
- globals: { vue: 'Vue', 'view-ui-plus': 'viewUiPlus' }
46
34
  }
47
35
  ]
48
36
  }