@akilli/editor 5.1.6 → 5.1.8
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/license.md +1 -1
- package/package.json +6 -6
package/license.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
Copyright (c)
|
|
1
|
+
Copyright (c) 2023 Ayhan Akilli
|
|
2
2
|
|
|
3
3
|
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated
|
|
4
4
|
documentation files (the "Software"), to deal in the Software without restriction, including without limitation the
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@akilli/editor",
|
|
3
|
-
"version": "5.1.
|
|
3
|
+
"version": "5.1.8",
|
|
4
4
|
"description": "A HTML standards-compliant and dependency-free rich text editor",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"contenteditable",
|
|
@@ -29,20 +29,20 @@
|
|
|
29
29
|
],
|
|
30
30
|
"scripts": {
|
|
31
31
|
"start": "npx --yes servor --reload . index.html 20000",
|
|
32
|
-
"lint
|
|
32
|
+
"lint": "prettier --check '**/*.js'",
|
|
33
33
|
"lint:fix": "prettier --write '**/*.js'",
|
|
34
34
|
"build": "npm run build:clean && npm run build:font && npm run build:css && npm run build:js",
|
|
35
35
|
"build:clean": "rm -rf dist",
|
|
36
36
|
"build:font": "mkdir -p dist && cp src/build/editor.woff2 dist/editor.woff2",
|
|
37
37
|
"build:css": "esbuild src/build/editor.css --minify --outfile=dist/editor.css",
|
|
38
|
-
"build:js": "
|
|
38
|
+
"build:js": "node ./build.js",
|
|
39
39
|
"release:patch": "./release patch",
|
|
40
40
|
"release:minor": "./release minor",
|
|
41
41
|
"release:major": "./release major"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
|
-
"@akilli/editor-src": "^5.1.
|
|
45
|
-
"esbuild": "^0.16
|
|
46
|
-
"prettier": "^2.8.
|
|
44
|
+
"@akilli/editor-src": "^5.1.8",
|
|
45
|
+
"esbuild": "^0.17.16",
|
|
46
|
+
"prettier": "^2.8.7"
|
|
47
47
|
}
|
|
48
48
|
}
|