@tailor-cms/ce-jodit-html-edit 0.0.8 → 0.1.0
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/components/Edit.vue.d.ts +4 -4
- package/dist/components/JoditEditor.vue.d.ts +1 -3
- package/dist/components/TopToolbar.vue.d.ts +1 -1
- package/dist/components/config.d.ts +1 -1
- package/dist/index.cjs +32378 -32337
- package/dist/index.css +90 -14
- package/dist/index.js +32382 -32341
- package/package.json +18 -15
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"description": "Tailor CMS Jodit HTML editor authoring component",
|
|
4
4
|
"author": "Studion <info@gostudion.com> (https://github.com/tailor-cms)",
|
|
5
5
|
"type": "module",
|
|
6
|
-
"version": "0.0
|
|
6
|
+
"version": "0.1.0",
|
|
7
7
|
"exports": {
|
|
8
8
|
".": {
|
|
9
9
|
"import": "./dist/index.js",
|
|
@@ -19,25 +19,28 @@
|
|
|
19
19
|
"vue": "^3.5.13"
|
|
20
20
|
},
|
|
21
21
|
"devDependencies": {
|
|
22
|
-
"@tailor-cms/eslint-config": "
|
|
23
|
-
"@types/lodash": "^4.17.
|
|
24
|
-
"@vitejs/plugin-vue": "^
|
|
25
|
-
"typescript": "^5.
|
|
26
|
-
"vite": "^
|
|
27
|
-
"vue-tsc": "^
|
|
28
|
-
"@tailor-cms/ce-jodit-html-manifest": "0.0
|
|
22
|
+
"@tailor-cms/eslint-config": "1.1.2",
|
|
23
|
+
"@types/lodash-es": "^4.17.12",
|
|
24
|
+
"@vitejs/plugin-vue": "^6.0.0",
|
|
25
|
+
"typescript": "^5.8.3",
|
|
26
|
+
"vite": "^7.0.3",
|
|
27
|
+
"vue-tsc": "^3.0.1",
|
|
28
|
+
"@tailor-cms/ce-jodit-html-manifest": "0.1.0"
|
|
29
|
+
},
|
|
30
|
+
"dependencies": {
|
|
31
|
+
"jodit": "^4.6.2",
|
|
32
|
+
"lodash-es": "^4.17.21"
|
|
29
33
|
},
|
|
30
34
|
"publishConfig": {
|
|
31
35
|
"access": "public"
|
|
32
36
|
},
|
|
33
|
-
"dependencies": {
|
|
34
|
-
"jodit": "^4.5.17",
|
|
35
|
-
"lodash": "^4.17.21"
|
|
36
|
-
},
|
|
37
37
|
"scripts": {
|
|
38
38
|
"dev": "vite build --watch",
|
|
39
|
-
"build": "vue-tsc && vite build",
|
|
40
|
-
"lint": "eslint
|
|
41
|
-
"lint:fix": "pnpm lint --fix"
|
|
39
|
+
"build": "pnpm nuke:dist && vue-tsc && vite build",
|
|
40
|
+
"lint": "eslint ./src",
|
|
41
|
+
"lint:fix": "pnpm lint --fix",
|
|
42
|
+
"nuke": "pnpm dlx del-cli dist node_modules",
|
|
43
|
+
"nuke:dist": "pnpm dlx del-cli dist",
|
|
44
|
+
"prepublish": "pnpm build"
|
|
42
45
|
}
|
|
43
46
|
}
|