@zenuml/core 3.49.1 → 3.49.3
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/README.md +4 -13
- package/dist/cli/zenuml.mjs +298 -278
- package/dist/cli/zenuml.mjs.map +1 -1
- package/dist/zenuml.esm.mjs +1519 -1465
- package/dist/zenuml.esm.mjs.map +1 -1
- package/dist/zenuml.js +4 -4
- package/dist/zenuml.js.map +1 -1
- package/package.json +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zenuml/core",
|
|
3
|
-
"version": "3.49.
|
|
3
|
+
"version": "3.49.3",
|
|
4
4
|
"private": false,
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"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",
|
|
42
42
|
"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",
|
|
43
43
|
"eslint": "eslint --fix --ext .js,.ts,.tsx,.jsx src",
|
|
44
|
-
"prettier": "bun run --bun prettier --write --ignore-unknown \"src/**/*.{js,ts,
|
|
44
|
+
"prettier": "bun run --bun prettier --write --ignore-unknown \"src/**/*.{js,ts,json,htm,html}\"",
|
|
45
45
|
"git:branch:clean:gone": "git fetch -p && git branch -vv | awk '/: gone]/{print $1}' | xargs git branch -d",
|
|
46
46
|
"git:branch:clean:merged": "git branch --merged|egrep -v \"(\\*|master|main|dev|skip_branch_name)\" | xargs git branch -d",
|
|
47
47
|
"git:branch:safe-delete": "echo '> git log --graph --left-right --cherry --oneline another-branch...main'",
|