@zenuml/core 2.0.33 → 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/package.json +2 -17
- package/pnpm-lock.yaml +40 -2129
- package/vite.config.lib.js +0 -15
|
@@ -6,9 +6,7 @@
|
|
|
6
6
|
<script>
|
|
7
7
|
window.process = {env: 'production'};
|
|
8
8
|
</script>
|
|
9
|
-
<script src="https://unpkg.com/@zenuml/core@2.0.
|
|
10
|
-
<link rel="stylesheet" href="https://unpkg.com/@zenuml/core@2.0.31/dist/style.css" />
|
|
11
|
-
|
|
9
|
+
<script src="https://unpkg.com/@zenuml/core@2.0.33/dist/zenuml.js"></script>
|
|
12
10
|
</head>
|
|
13
11
|
<body class="zenuml">
|
|
14
12
|
<div id="app"></div>
|
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'",
|
|
@@ -53,7 +47,6 @@
|
|
|
53
47
|
"ramda": "^0.28.0",
|
|
54
48
|
"tailwindcss": "^3.2.4",
|
|
55
49
|
"vue": "^3.2.45",
|
|
56
|
-
"vue-gtag": "^1.16.1",
|
|
57
50
|
"vuex": "^4.1.0"
|
|
58
51
|
},
|
|
59
52
|
"devDependencies": {
|
|
@@ -61,7 +54,6 @@
|
|
|
61
54
|
"@babel/preset-env": "^7.20.2",
|
|
62
55
|
"@types/antlr4": "^4.11.2",
|
|
63
56
|
"@types/color-string": "^1.5.2",
|
|
64
|
-
"@types/jest": "^27.5.2",
|
|
65
57
|
"@types/lodash": "^4.14.168",
|
|
66
58
|
"@types/node": "latest",
|
|
67
59
|
"@typescript-eslint/eslint-plugin": "^5.46.1",
|
|
@@ -69,24 +61,20 @@
|
|
|
69
61
|
"@vitejs/plugin-vue": "^4.0.0",
|
|
70
62
|
"@vue/compiler-sfc": "^3.2.45",
|
|
71
63
|
"@vue/test-utils": "^2.2.6",
|
|
72
|
-
"@vue/vue2-jest": "^27.0.0",
|
|
73
64
|
"autoprefixer": "^10.4.13",
|
|
74
65
|
"babel-eslint": "^10.1.0",
|
|
75
|
-
"babel-jest": "^27.5.1",
|
|
76
66
|
"concurrently": "^7.5.0",
|
|
77
67
|
"cypress": "10",
|
|
78
68
|
"cypress-plugin-snapshots": "^1.4.4",
|
|
79
69
|
"eslint": "^8.30.0",
|
|
80
70
|
"eslint-plugin-vue": "^8.7.1",
|
|
81
71
|
"global-jsdom": "^8.6.0",
|
|
82
|
-
"jest": "^27.5.1",
|
|
83
72
|
"jsdom": "^20.0.2",
|
|
84
73
|
"node-sass": "^6.0.0",
|
|
85
74
|
"regenerator-runtime": "^0.13.7",
|
|
86
75
|
"sass": "^1.26.5",
|
|
87
76
|
"svg-url-loader": "^6.0.0",
|
|
88
77
|
"terser-webpack-plugin": "^3.0.6",
|
|
89
|
-
"ts-jest": "^27.1.5",
|
|
90
78
|
"ts-node": "^10.9.1",
|
|
91
79
|
"typescript": "^4.7.4",
|
|
92
80
|
"vite": "^3.2.3",
|
|
@@ -111,10 +99,7 @@
|
|
|
111
99
|
"files": [
|
|
112
100
|
"**/__tests__/*.{j,t}s?(x)",
|
|
113
101
|
"**/*.spec.{j,t}s?(x)"
|
|
114
|
-
]
|
|
115
|
-
"env": {
|
|
116
|
-
"jest": true
|
|
117
|
-
}
|
|
102
|
+
]
|
|
118
103
|
}
|
|
119
104
|
]
|
|
120
105
|
},
|