hoeditor-web 2.0.51 → 2.0.52
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/lib/hoeditor.common.js +160 -90
- package/lib/hoeditor.css +853 -2
- package/lib/hoeditor.umd.js +160 -90
- package/lib/hoeditor.umd.min.js +2 -2
- package/package.json +3 -3
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "hoeditor-web",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.52",
|
|
4
4
|
"private": false,
|
|
5
5
|
"main": "lib/hoeditor.common.js",
|
|
6
6
|
"typings": "types/index.d.ts",
|
|
7
7
|
"scripts": {
|
|
8
8
|
"serve": "vue-cli-service serve",
|
|
9
|
-
"build": "vue-cli-service build",
|
|
9
|
+
"build": "vue-cli-service build --no-module",
|
|
10
10
|
"analyze": "vue-cli-service build --report",
|
|
11
11
|
"test:unit": "vue-cli-service test:unit",
|
|
12
12
|
"lint": "vue-cli-service lint",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"lib:patch": "npm version patch && npm run createDoc && npm run createVersion && npm run lib",
|
|
19
19
|
"lib:publish": "npm version patch && npm run createDoc && npm run createVersion && npm run lib",
|
|
20
20
|
"createVersion": "node ./gen-version.js",
|
|
21
|
-
"libEmr": "vue-cli-service build -inline-vue --dest ../../../newEmrweb/node_modules/hoeditor-web/lib --target lib --name hoeditor src/index.ts"
|
|
21
|
+
"libEmr": "vue-cli-service build -inline-vue --dest ../../../newEmrweb/node_modules/hoeditor-web/lib --target lib --name hoeditor src/index.ts && cd ../../../newEmrweb && npm run build"
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"@popperjs/core": "^2.10.2",
|