open-edit 0.1.2 → 0.1.4

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.
@@ -0,0 +1 @@
1
+ export { OpenEdit as default } from './index.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "open-edit",
3
- "version": "0.1.2",
3
+ "version": "0.1.4",
4
4
  "description": "Lightweight, embeddable WYSIWYG HTML editor. Zero dependencies, plugin system, clean HTML5 output.",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -41,7 +41,7 @@
41
41
  ],
42
42
  "scripts": {
43
43
  "dev": "vite build --watch",
44
- "build": "vite build && tsc -p tsconfig.lib.json --emitDeclarationOnly",
44
+ "build": "vite build && vite build --mode umd && tsc -p tsconfig.lib.json --emitDeclarationOnly",
45
45
  "preview": "vite",
46
46
  "lint": "eslint . --ext .ts --max-warnings 0",
47
47
  "test": "vitest run --environment jsdom",