@zenuml/core 2.0.32 → 2.0.34
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/Integration/vanilla-js/index.html +1 -3
- package/dist/zenuml.esm.mjs +12163 -12716
- package/dist/zenuml.js +98 -99
- package/package.json +11 -24
- package/pnpm-lock.yaml +401 -2872
- package/tailwind.config.js +0 -1
- package/vite.config.js +17 -2
- package/vite.config.lib.js +29 -7
- package/.eslintrc.json +0 -1
- package/dist/style.css +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zenuml/core",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.34",
|
|
4
4
|
"private": false,
|
|
5
5
|
"repository": {
|
|
6
6
|
"url": "https://github.com/ZenUml/core.git"
|
|
@@ -9,14 +9,10 @@
|
|
|
9
9
|
"dev": "vite dev --port 8080",
|
|
10
10
|
"build:site": "vite build",
|
|
11
11
|
"build": "vite build -c vite.config.lib.js",
|
|
12
|
-
"build:report": "vue-cli-service build --report --target lib --inline-vue --name zenuml/core ./src/core.ts",
|
|
13
|
-
"test:unit": "jest",
|
|
14
12
|
"test": "vitest",
|
|
15
|
-
"test:unit:watch": "pnpm run antlr && vue-cli-service test:unit --watch",
|
|
16
13
|
"cy": "cypress run",
|
|
17
14
|
"cy:open": "cypress open",
|
|
18
15
|
"cy:smoke": "cypress run --spec cypress/e2e/smoke.spec.js",
|
|
19
|
-
"lint": "vue-cli-service lint",
|
|
20
16
|
"antlr:setup": "python3 -m pip install antlr4-tools",
|
|
21
17
|
"antlr:generate": "pwd && cd ./src/g4-units/hello-world && antlr4 Hello.g4",
|
|
22
18
|
"antlr:javac": "pwd && cd ./src/g4-units/hello-world && CLASSPATH=\"../../../antlr/antlr-4.11.1-complete.jar:$CLASSPATH\" javac *.java",
|
|
@@ -25,8 +21,6 @@
|
|
|
25
21
|
"antlr:clear": "rm -rf src/generated-parser/*",
|
|
26
22
|
"antlr:lexer": "java -Duser.dir=$(pwd)/src/g4 -cp $(pwd)/antlr/antlr-4.11.1-complete.jar org.antlr.v4.Tool -o ./src/generated-parser -Dlanguage=JavaScript sequenceLexer.g4",
|
|
27
23
|
"antlr:parser": "java -Duser.dir=$(pwd)/src/g4 -cp $(pwd)/antlr/antlr-4.11.1-complete.jar org.antlr.v4.Tool -o ./src/generated-parser -Dlanguage=JavaScript sequenceParser.g4",
|
|
28
|
-
"build-crx": "vue-cli-service build --mode production --target lib --name zenuml/core ./src/index.js",
|
|
29
|
-
"start": "vue-cli-service serve",
|
|
30
24
|
"git:branch:clean:gone": "git fetch -p && git branch -vv | awk '/: gone]/{print $1}' | xargs git branch -d",
|
|
31
25
|
"git:branch:clean:merged": "git branch --merged|egrep -v \"(\\*|master|main|dev|skip_branch_name)\" | xargs git branch -d",
|
|
32
26
|
"git:branch:safe-delete": "echo '> git log --graph --left-right --cherry --oneline another-branch...main'",
|
|
@@ -39,6 +33,7 @@
|
|
|
39
33
|
"dependencies": {
|
|
40
34
|
"@types/assert": "^1.5.4",
|
|
41
35
|
"@types/ramda": "^0.28.0",
|
|
36
|
+
"@vue/compat": "^3.2.45",
|
|
42
37
|
"antlr4": "^4.11.0",
|
|
43
38
|
"color-string": "^1.5.5",
|
|
44
39
|
"dom-to-image-more": "^2.9.5",
|
|
@@ -51,45 +46,40 @@
|
|
|
51
46
|
"postcss": "^8.4.19",
|
|
52
47
|
"ramda": "^0.28.0",
|
|
53
48
|
"tailwindcss": "^3.2.4",
|
|
54
|
-
"vue": "2.
|
|
55
|
-
"
|
|
56
|
-
"vuex": "^3.6.2"
|
|
49
|
+
"vue": "^3.2.45",
|
|
50
|
+
"vuex": "^4.1.0"
|
|
57
51
|
},
|
|
58
52
|
"devDependencies": {
|
|
59
53
|
"@babel/eslint-parser": "^7.19.1",
|
|
60
54
|
"@babel/preset-env": "^7.20.2",
|
|
61
55
|
"@types/antlr4": "^4.11.2",
|
|
62
56
|
"@types/color-string": "^1.5.2",
|
|
63
|
-
"@types/jest": "^27.5.2",
|
|
64
57
|
"@types/lodash": "^4.14.168",
|
|
65
58
|
"@types/node": "latest",
|
|
66
59
|
"@typescript-eslint/eslint-plugin": "^5.46.1",
|
|
67
60
|
"@typescript-eslint/parser": "^5.46.1",
|
|
68
|
-
"@
|
|
69
|
-
"@vue/
|
|
61
|
+
"@vitejs/plugin-vue": "^4.0.0",
|
|
62
|
+
"@vue/compiler-sfc": "^3.2.45",
|
|
63
|
+
"@vue/test-utils": "^2.2.6",
|
|
70
64
|
"autoprefixer": "^10.4.13",
|
|
71
65
|
"babel-eslint": "^10.1.0",
|
|
72
|
-
"babel-jest": "^27.5.1",
|
|
73
66
|
"concurrently": "^7.5.0",
|
|
74
67
|
"cypress": "10",
|
|
75
68
|
"cypress-plugin-snapshots": "^1.4.4",
|
|
76
69
|
"eslint": "^8.30.0",
|
|
77
70
|
"eslint-plugin-vue": "^8.7.1",
|
|
78
71
|
"global-jsdom": "^8.6.0",
|
|
79
|
-
"jest": "^27.5.1",
|
|
80
72
|
"jsdom": "^20.0.2",
|
|
81
73
|
"node-sass": "^6.0.0",
|
|
82
74
|
"regenerator-runtime": "^0.13.7",
|
|
83
75
|
"sass": "^1.26.5",
|
|
84
76
|
"svg-url-loader": "^6.0.0",
|
|
85
77
|
"terser-webpack-plugin": "^3.0.6",
|
|
86
|
-
"ts-jest": "^27.1.5",
|
|
87
78
|
"ts-node": "^10.9.1",
|
|
88
79
|
"typescript": "^4.7.4",
|
|
89
|
-
"vite": "^
|
|
90
|
-
"vite-plugin-
|
|
91
|
-
"vitest": "^0.26.1"
|
|
92
|
-
"vue-template-compiler": "^2.7.14"
|
|
80
|
+
"vite": "^3.2.3",
|
|
81
|
+
"vite-plugin-css-injected-by-js": "^2.2.0",
|
|
82
|
+
"vitest": "^0.26.1"
|
|
93
83
|
},
|
|
94
84
|
"eslintConfig": {
|
|
95
85
|
"root": true,
|
|
@@ -109,10 +99,7 @@
|
|
|
109
99
|
"files": [
|
|
110
100
|
"**/__tests__/*.{j,t}s?(x)",
|
|
111
101
|
"**/*.spec.{j,t}s?(x)"
|
|
112
|
-
]
|
|
113
|
-
"env": {
|
|
114
|
-
"jest": true
|
|
115
|
-
}
|
|
102
|
+
]
|
|
116
103
|
}
|
|
117
104
|
]
|
|
118
105
|
},
|