@ddd-tool/domain-designer-cli 0.1.0-beta.7 → 0.1.0-beta.9
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": "@ddd-tool/domain-designer-cli",
|
|
3
|
-
"version": "0.1.0-beta.
|
|
3
|
+
"version": "0.1.0-beta.9",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "",
|
|
6
6
|
"type": "module",
|
|
@@ -27,8 +27,8 @@
|
|
|
27
27
|
"repository": "https://github.com/ddd-tool/domain-designer-cli-node",
|
|
28
28
|
"license": "Apache-2.0",
|
|
29
29
|
"devDependencies": {
|
|
30
|
-
"@ddd-tool/domain-designer-core": "0.1.0-beta.
|
|
31
|
-
"@ddd-tool/domain-designer-ui-component": "0.1.0-beta.
|
|
30
|
+
"@ddd-tool/domain-designer-core": "0.1.0-beta.7",
|
|
31
|
+
"@ddd-tool/domain-designer-ui-component": "0.1.0-beta.6",
|
|
32
32
|
"@primeuix/themes": "^1.0.0",
|
|
33
33
|
"@types/node": "^22.13.10",
|
|
34
34
|
"@vitejs/plugin-vue": "^5.2.3",
|
|
@@ -1,3 +1,4 @@
|
|
|
1
1
|
import { DomainDesigner, DomainDesignOptions } from './define';
|
|
2
2
|
export declare function createDomainDesigner(opts?: DomainDesignOptions): DomainDesigner;
|
|
3
3
|
export { type DomainDesigner, type DomainDesignAgg, type DomainDesignCommand, type DomainDesignFacadeCommand, type DomainDesignNote, type DomainDesignEvent, type DomainDesignInfo, type DomainDesignInfoType, type DomainDesignActor, type DomainDesignSystem, type DomainDesignService, type DomainDesignPolicy, type DomainDesignInfoRecord, type DomainDesignReadModel, type DomainDesignObject, isDomainDesignInfo, isDomainDesignInfoFunc, isDomainDesignActor, isDomainDesignAgg, isDomainDesignCommand, isDomainDesignFacadeCommand, isDomainDesignEvent, isDomainDesignPolicy, isDomainDesignReadModel, isDomainDesignService, isDomainDesignSystem, isDomainDesigner, } from './define';
|
|
4
|
+
export { defaultOptions } from './common';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.0-beta.
|
|
1
|
+
0.1.0-beta.9
|
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
|
},
|