agilebuilder-ui 1.1.12-tmp1 → 1.1.12-tmp2
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/lib/super-ui.js +122818 -59519
- package/lib/super-ui.umd.cjs +127 -94
- package/package.json +1 -1
- package/vite.config.js +8 -8
package/package.json
CHANGED
package/vite.config.js
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
import { defineConfig } from "vite";
|
|
2
2
|
import vue from "@vitejs/plugin-vue";
|
|
3
3
|
import path from "path";
|
|
4
|
-
import { terser } from 'rollup-plugin-terser'
|
|
4
|
+
// import { terser } from 'rollup-plugin-terser'
|
|
5
5
|
// https://vitejs.dev/config/
|
|
6
6
|
export default defineConfig({
|
|
7
7
|
plugins: [
|
|
8
|
-
vue()
|
|
9
|
-
terser({
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
})
|
|
8
|
+
vue()
|
|
9
|
+
// terser({
|
|
10
|
+
// output: {
|
|
11
|
+
// // 对于console.error,不做任何处理
|
|
12
|
+
// comments: (node, comment) => comment.type === 'error'
|
|
13
|
+
// }
|
|
14
|
+
// })
|
|
15
15
|
],
|
|
16
16
|
build: {
|
|
17
17
|
outDir: "lib", //输出文件名称
|