@zipify/wysiwyg 3.3.1 → 3.4.1-dev
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/.release-it.json +2 -1
- package/config/build/node.config.js +38 -0
- package/dist/cli.js +1 -1
- package/dist/wysiwyg.cjs +16 -0
- package/dist/wysiwyg.mjs +1 -1
- package/lib/entryNode.js +2 -0
- package/package.json +8 -2
package/dist/wysiwyg.mjs
CHANGED
|
@@ -26730,7 +26730,7 @@ var render = function __render__45() {
|
|
|
26730
26730
|
})], 1);
|
|
26731
26731
|
};
|
|
26732
26732
|
var staticRenderFns = [];
|
|
26733
|
-
const
|
|
26733
|
+
const main_css_vue_type_style_index_0_from__2FUsers_2Fmaster_2Fwork_2FZipifyWysiwyg_2Flib_2FWysiwyg_vue_src_lang = "";
|
|
26734
26734
|
const MIN_FONT_SIZE = 5;
|
|
26735
26735
|
const MAX_FONT_SIZE = 112;
|
|
26736
26736
|
const __vue2_script = {
|
package/lib/entryNode.js
ADDED
package/package.json
CHANGED
|
@@ -1,8 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zipify/wysiwyg",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.4.1-dev",
|
|
4
4
|
"description": "Zipify modification of TipTap text editor",
|
|
5
|
-
"
|
|
5
|
+
"exports": {
|
|
6
|
+
".": {
|
|
7
|
+
"node": "./dist/wysiwyg.cjs",
|
|
8
|
+
"default": "./dist/wysiwyg.mjs"
|
|
9
|
+
}
|
|
10
|
+
},
|
|
6
11
|
"bin": {
|
|
7
12
|
"zipify-wysiwyg": "bin/cli"
|
|
8
13
|
},
|
|
@@ -21,6 +26,7 @@
|
|
|
21
26
|
"lib:release": "export $(cat ./.env | xargs) && release-it",
|
|
22
27
|
"cli:build": "NODE_ENV=production rollup --config config/build/cli.config.js --bundleConfigAsCjs",
|
|
23
28
|
"cli:dev": "NODE_ENV=development rollup --config config/build/cli.config.js --bundleConfigAsCjs --watch",
|
|
29
|
+
"node:build": "NODE_ENV=production rollup --config config/build/node.config.js --bundleConfigAsCjs",
|
|
24
30
|
"example:start": "NODE_ENV=development vite serve --config config/build/example.config.js",
|
|
25
31
|
"example:build": "NODE_ENV=production vite build --config config/build/example.config.js",
|
|
26
32
|
"test:unit": "jest .",
|