mxcad 1.0.49 → 1.0.50
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/dist/mxcad.d.ts +182 -185
- package/dist/mxcad.es.js +907 -904
- package/dist/mxcad.umd.js +38 -38
- package/package.json +4 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mxcad",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.50",
|
|
4
4
|
"main": "./dist/mxcad.umd.js",
|
|
5
5
|
"module": "./dist/mxcad.es.js",
|
|
6
6
|
"typings": "dist/mxcad.d.ts",
|
|
@@ -30,9 +30,9 @@
|
|
|
30
30
|
"preview": "vite preview",
|
|
31
31
|
"test": "jest --runInBand",
|
|
32
32
|
"cz": "czg",
|
|
33
|
-
"dev
|
|
34
|
-
"build
|
|
35
|
-
"
|
|
33
|
+
"docs:dev": "node docs/typedoc.js && vitepress dev docs",
|
|
34
|
+
"docs:build": "node docs/typedoc.js && vitepress build docs",
|
|
35
|
+
"pub": "npm run add-commit && release-it && npm run build",
|
|
36
36
|
"docs-pub": "docs-deploy.sh",
|
|
37
37
|
"add-commit": "git add docs dist && npx git-cz",
|
|
38
38
|
"pub-init": "git init && git remote add origin https://github.com/mxcad/mxcad_docs.git -f && git add docs dist && git commit -m\"init\" && git branch --set-upstream-to=origin/master master",
|