diff --git a/CHANGELOG.md b/CHANGELOG.md index 2f8be95..eae0794 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## 1.0.3 + +* Fix: `quill-delta-from-html` cannot founded +* Chore: exposing all named methods on `quill-delta-from-html` + ## 1.0.2 * Fix: always add a new line without checking the last operation diff --git a/package-lock.json b/package-lock.json index f5ad9e8..50ebc16 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,21 +1,18 @@ { "name": "quill-delta-from-html", - "version": "1.0.2", + "version": "1.0.3", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "quill-delta-from-html", - "version": "1.0.2", + "version": "1.0.3", "license": "MIT", "dependencies": { - "quill-delta": "^5.1.0" + "quill-delta": "^5.1.0", + "node-html-parser": "^6.1.13" }, "devDependencies": { - "@types/jest": "^29.5.12", - "jest": "^29.7.0", - "node-html-parser": "^6.1.13", - "ts-jest": "^29.2.2", "ts-node": "^10.9.2", "typescript": "^5.5.3" } diff --git a/package.json b/package.json index 7b34bb2..c0744fa 100644 --- a/package.json +++ b/package.json @@ -1,10 +1,28 @@ { "name": "quill-delta-from-html", - "version": "1.0.2", + "version": "1.0.3", "description": "Convert easily HTML inputs content to Quill Js Delta format", + "main": "dist/quill-delta-from-html.js", + "types": "dist/quill-delta-from-html.d.ts", + "typings": "dist/quill-delta-from-html.d.ts", + "typesVersions": { + "*": { + "dist/quill-delta-from-html.d.ts": [ + "dist/quill-delta-from-html.d.ts" + ], + "*": [ + "dist/*" + ] + } + }, + "exports": { + ".": "./dist/quill-delta-from-html.js", + "./": "./dist/" + }, "scripts": { "build": "tsc", "start": "ts-node src/index.ts", + "prepublish": "tsc", "test": "echo \"Error: no test specified\" && exit 1" }, "repository": {