@zenuml/core 3.32.3 → 3.32.4

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": "@zenuml/core",
3
- "version": "3.32.3",
3
+ "version": "3.32.4",
4
4
  "private": false,
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -43,7 +43,6 @@ export default defineConfig({
43
43
  },
44
44
  resolve: {
45
45
  alias: {
46
- vue: "@vue/compat",
47
46
  "@": resolve(__dirname, "./src"),
48
47
  },
49
48
  },
package/vite.config.ts CHANGED
@@ -62,8 +62,5 @@ export default defineConfig(({ mode }) => ({
62
62
  provider: "v8", // or 'v8'
63
63
  },
64
64
  setupFiles: resolve(__dirname, "test/setup.ts"),
65
- // deps: {
66
- // inline: ["@vue/test-utils"],
67
- // },
68
65
  },
69
66
  }));
package/types/index.d.ts DELETED
@@ -1,31 +0,0 @@
1
- // import { VueConstructor } from 'vue';
2
-
3
-
4
- declare module '*.vue' {
5
- const SFC: Vue.Component;
6
- export default SFC;
7
- }
8
-
9
- declare module '*.vue' {
10
- import Vue from 'vue';
11
- // noinspection JSDuplicatedDeclaration
12
- export default Vue;
13
- }
14
-
15
- declare module '@/src/components/*' {
16
- import Vue from 'vue';
17
- // noinspection JSDuplicatedDeclaration
18
- export default Vue;
19
- }
20
-
21
- declare module '@/spa/components/*' {
22
- import Vue from 'vue';
23
- // noinspection JSDuplicatedDeclaration
24
- export default Vue;
25
- }
26
-
27
- export const VueSequence: VueSequence;
28
-
29
- export default ZenUml;
30
-
31
- export const debug;