@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/.eslintrc.js +1 -3
- package/README.md +1 -1
- package/dist/zenuml.esm.mjs +200 -200
- package/dist/zenuml.js +460 -460
- package/package.json +1 -1
- package/vite.config.lib.ts +0 -1
- package/vite.config.ts +0 -3
- package/types/index.d.ts +0 -31
package/.eslintrc.js
CHANGED
|
@@ -8,7 +8,6 @@ module.exports = {
|
|
|
8
8
|
extends: [
|
|
9
9
|
"eslint:recommended",
|
|
10
10
|
"plugin:@typescript-eslint/recommended",
|
|
11
|
-
"plugin:vue/vue3-essential",
|
|
12
11
|
"plugin:prettier/recommended",
|
|
13
12
|
],
|
|
14
13
|
globals: {
|
|
@@ -30,9 +29,8 @@ module.exports = {
|
|
|
30
29
|
parser: "@typescript-eslint/parser",
|
|
31
30
|
sourceType: "module",
|
|
32
31
|
},
|
|
33
|
-
plugins: ["@typescript-eslint", "
|
|
32
|
+
plugins: ["@typescript-eslint", "html"],
|
|
34
33
|
rules: {
|
|
35
|
-
"vue/multi-word-component-names": "off",
|
|
36
34
|
"@typescript-eslint/ban-ts-comment": "off",
|
|
37
35
|
"@typescript-eslint/no-var-requires": "off",
|
|
38
36
|
"@typescript-eslint/no-explicit-any": "off",
|
package/README.md
CHANGED
|
@@ -122,4 +122,4 @@ This repository contains both the DSL parser and the renderer.
|
|
|
122
122
|
The parser is generated with Antlr4. You can find the definition at `src/g4`. Generated parser is at `src/generated-parser`.
|
|
123
123
|
Parser enhancement with customised functionalities is in the `src/parser` folder.
|
|
124
124
|
|
|
125
|
-
Almost everything else under src are for the renderer. The render is based on
|
|
125
|
+
Almost everything else under src are for the renderer. The render is based on React19.
|