@ddd-tool/domain-designer-cli 0.1.0-beta.6 → 0.1.0-beta.8
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/bin/domain-designer-cli.cjs +1824 -1636
- package/package.json +1 -1
- package/templates/node_modules/version.txt +1 -1
- package/vite.config.ts +1 -10
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.0-beta.
|
|
1
|
+
0.1.0-beta.8
|
package/vite.config.ts
CHANGED
|
@@ -2,18 +2,9 @@ import { fileURLToPath, URL } from 'url'
|
|
|
2
2
|
|
|
3
3
|
import { defineConfig } from 'vite'
|
|
4
4
|
import vue from '@vitejs/plugin-vue'
|
|
5
|
-
// import topLevelAwait from 'vite-plugin-top-level-await'
|
|
6
5
|
|
|
7
6
|
export default defineConfig({
|
|
8
|
-
plugins: [
|
|
9
|
-
vue(),
|
|
10
|
-
// topLevelAwait({
|
|
11
|
-
// // The export name of top-level await promise for each chunk module
|
|
12
|
-
// promiseExportName: '__tla',
|
|
13
|
-
// // The function to generate import names of top-level await promise in each chunk module
|
|
14
|
-
// promiseImportName: (i) => `__tla_${i}`,
|
|
15
|
-
// }),
|
|
16
|
-
],
|
|
7
|
+
plugins: [vue()],
|
|
17
8
|
esbuild: {
|
|
18
9
|
drop: ['console', 'debugger'], // 移除 console 和 debugger 语句
|
|
19
10
|
},
|