agilebuilder-ui 1.1.65-tmp22 → 1.1.65-tmp23
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.full.min.js +1 -1
- package/es/index.mjs +5 -4
- package/es/style.css +798 -798
- package/lib/index.cjs +4 -4
- package/lib/style.css +797 -797
- package/package.json +1 -1
- package/vite.config.js +0 -45
package/package.json
CHANGED
package/vite.config.js
CHANGED
|
@@ -99,50 +99,5 @@ export default defineConfig(({ mode }) => ({
|
|
|
99
99
|
'@': fileURLToPath(new URL('./src', import.meta.url))
|
|
100
100
|
}
|
|
101
101
|
}
|
|
102
|
-
|
|
103
|
-
// plugins: [
|
|
104
|
-
// vue(),
|
|
105
|
-
// vueJsx(),
|
|
106
|
-
// terser({
|
|
107
|
-
// compress: {
|
|
108
|
-
// drop_debugger: ['production'].includes(mode),
|
|
109
|
-
// pure_funcs: ['production'].includes(mode) ? ['console.log', 'console.info', 'console.warn', 'console.debug'] : [],
|
|
110
|
-
// },
|
|
111
|
-
// output: {
|
|
112
|
-
// // 对于console.error,不做任何处理
|
|
113
|
-
// comments: (node, comment) => comment.type === 'error'
|
|
114
|
-
// }
|
|
115
|
-
// })
|
|
116
|
-
// ],
|
|
117
|
-
// build: {
|
|
118
|
-
// outDir: "lib", //输出文件名称
|
|
119
|
-
// lib: {
|
|
120
|
-
// entry: path.resolve(__dirname, "./packages/index.js"), //指定组件编译入口文件
|
|
121
|
-
// name: "super-ui", // 打包js 名称
|
|
122
|
-
// fileName: "super-ui",
|
|
123
|
-
// }, //库编译模式配置
|
|
124
|
-
// rollupOptions: {
|
|
125
|
-
// // 确保外部化处理那些你不想打包进库的依赖
|
|
126
|
-
// external: ["vue", "jsx"],
|
|
127
|
-
// output: {
|
|
128
|
-
// // 在 UMD 构建模式下为这些外部化的依赖提供一个全局变量
|
|
129
|
-
// globals: {
|
|
130
|
-
// vue: "Vue",
|
|
131
|
-
// },
|
|
132
|
-
// // 定义生成css的名称
|
|
133
|
-
// assetFileNames: (assetInfo) => {
|
|
134
|
-
// if (assetInfo.name == 'style.css')
|
|
135
|
-
// return 'super-ui.css'; // 打包的css名称
|
|
136
|
-
// return assetInfo.name;
|
|
137
|
-
// },
|
|
138
|
-
// },
|
|
139
|
-
// }, // rollup打包配置
|
|
140
|
-
// sourcemap: mode === 'development'
|
|
141
|
-
// },
|
|
142
|
-
// // ...其他配置项
|
|
143
|
-
// resolve: {
|
|
144
|
-
// // 忽略后缀名的配置选项, 添加 .vue 选项时要记得原本默认忽略的选项也要手动写入
|
|
145
|
-
// extensions: ['.mjs', '.js', '.ts', '.jsx', '.tsx', '.json', '.vue']
|
|
146
|
-
// }
|
|
147
102
|
}));
|
|
148
103
|
|