@akilli/editor 5.1.2 → 5.1.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/package.json +8 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@akilli/editor",
|
|
3
|
-
"version": "5.1.
|
|
3
|
+
"version": "5.1.3",
|
|
4
4
|
"description": "A HTML standards-compliant and dependency-free rich text editor",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"contenteditable",
|
|
@@ -24,6 +24,9 @@
|
|
|
24
24
|
"files": [
|
|
25
25
|
"dist"
|
|
26
26
|
],
|
|
27
|
+
"workspaces": [
|
|
28
|
+
"src"
|
|
29
|
+
],
|
|
27
30
|
"scripts": {
|
|
28
31
|
"start": "npx --yes servor --reload . index.html 20000",
|
|
29
32
|
"lint:check": "prettier --check '**/*.js'",
|
|
@@ -33,14 +36,12 @@
|
|
|
33
36
|
"build:font": "mkdir -p dist && cp src/build/editor.woff2 dist/editor.woff2",
|
|
34
37
|
"build:css": "esbuild src/build/editor.css --minify --outfile=dist/editor.css",
|
|
35
38
|
"build:js": "esbuild src/build/BuildEditor.js --minify --bundle --outfile=dist/editor.js --target=es2022 --format=esm",
|
|
36
|
-
"release:patch": "
|
|
37
|
-
"release:minor": "
|
|
38
|
-
"release:major": "
|
|
39
|
-
"preversion": "git fetch --tags",
|
|
40
|
-
"version": "npm run build && git add -A dist",
|
|
41
|
-
"postversion": "git push --follow-tags"
|
|
39
|
+
"release:patch": "./release patch",
|
|
40
|
+
"release:minor": "./release minor",
|
|
41
|
+
"release:major": "./release major"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
|
+
"@akilli/editor-src": "^5.1.3",
|
|
44
45
|
"esbuild": "^0.16.12",
|
|
45
46
|
"prettier": "^2.8.1"
|
|
46
47
|
}
|