From b4fc5897438e75244baa4292d1c181ef2074b455 Mon Sep 17 00:00:00 2001 From: shuta13 Date: Wed, 12 Oct 2022 16:06:41 +0900 Subject: [PATCH] chore: bump version v0.0.2 --- CHANGELOG.md | 25 ++++++++++++++++++++++ package.json | 8 ++++--- packages/core/CHANGELOG.md | 1 - packages/core/package.json | 5 ++--- packages/tool-block-paragraph/package.json | 7 +++--- packages/tool-inline-marker/package.json | 7 +++--- 6 files changed, 38 insertions(+), 15 deletions(-) create mode 100644 CHANGELOG.md delete mode 100644 packages/core/CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..b0aa310 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,25 @@ +## 0.0.2 (2022-10-12) + + +### Features + +* re-write tool-block-paragraph ([a838c17](https://github.com/cam-inc/pde.js/commit/a838c172fb3f5511565ec38abc75685b00906d38)) +* re-write tool-inline-marker ([a4c848b](https://github.com/cam-inc/pde.js/commit/a4c848b7210a28bbc3f81ea481a4327046b0e51b)) +* remove initilizer prop and add useConstruct ([048e457](https://github.com/cam-inc/pde.js/commit/048e457149b32ff1ec3e95ade13115d417505881)) + + +### Bug Fixes + +* add license display and sourcemap ([6b28d77](https://github.com/cam-inc/pde.js/commit/6b28d7763217989fe5e46382b66c0740a6d6eeba)) +* bugs appeared form ([16d37b2](https://github.com/cam-inc/pde.js/commit/16d37b21254544075e95bd084952a009b73656b9)) +* contenteditable ([fc87c17](https://github.com/cam-inc/pde.js/commit/fc87c1753731a34181f113916fa1c585d4754b3d)) +* example ([15c4989](https://github.com/cam-inc/pde.js/commit/15c498920292d4045227c7fddfa177c5dc257467)) +* rename useEffect to useWatch and add useMount ([e5d9edf](https://github.com/cam-inc/pde.js/commit/e5d9edf3aa8ba267a41c7ebae15423bf66ca2b82)) +* resolve the problem of mounting DOM with state updater ([15a269d](https://github.com/cam-inc/pde.js/commit/15a269d2525686b8aafed59c6a3e03257ae3b925)) +* small fix ([3a2a51a](https://github.com/cam-inc/pde.js/commit/3a2a51af1a696e112dca23b0cc64e223597e36fa)) +* small fix ([0b84cd5](https://github.com/cam-inc/pde.js/commit/0b84cd5946323f79b027ff4dbf52ce3a94e00348)) +* small fix ([ef007e7](https://github.com/cam-inc/pde.js/commit/ef007e7914b27fc06ac1e40d89e7ad5987fc3e27)) +* svg ([1382a91](https://github.com/cam-inc/pde.js/commit/1382a912a657b1052d7d0dde0970fc7405c45d5f)) +* test types ([ad07299](https://github.com/cam-inc/pde.js/commit/ad072995ba281bef5cfb62d5d79b0711e1bb9bc1)) +* typo ([504fbf8](https://github.com/cam-inc/pde.js/commit/504fbf8ef33a2f0a35142d294d22613e2f206e13)) + diff --git a/package.json b/package.json index 4fc50ba..a7a4785 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { - "private": true, + "private": false, "name": "pdejs", - "version": "0.0.1", + "version": "0.0.2", "volta": { "node": "16.14.2" }, @@ -9,11 +9,13 @@ "scripts": { "preflight": "npm ci .", "postinstall": "npx husky install && turbo run license-checker", + "prepare": "turbo run build && turbo run license-checker", "dev": "turbo run dev --parallel", "build": "turbo run build", "test": "turbo run test", "clear": "turbo run clear", - "graph": "turbo run build test lint format clean --graph=task-graph.png" + "graph": "turbo run build test lint format clean --graph=task-graph.png", + "changelog": "conventional-changelog --preset conventionalcommits --release-count 0 --commit-path $PWD --pkg $PWD/package.json --infile $PWD/CHANGELOG.md --same-file" }, "workspaces": ["apps/*", "examples/*", "packages/*"], "devDependencies": { diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md deleted file mode 100644 index 8d18399..0000000 --- a/packages/core/CHANGELOG.md +++ /dev/null @@ -1 +0,0 @@ -## [0.0.1](https://github.com/cam-inc/pde.js/compare/@pdejs/core/v0.0.1...@pdejs/core/0.0.1) (2022-08-09) diff --git a/packages/core/package.json b/packages/core/package.json index e7332f0..bff4288 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,7 +1,7 @@ { "private": false, "name": "@pdejs/core", - "version": "0.0.1", + "version": "0.0.2", "description": "PDEJS - Plugin Declarative for Editor.js", "main": "./dist/cjs.js", "module": "./dist/es.js", @@ -26,8 +26,7 @@ "test:unit": "jest --testMatch \"/__tests__/unit/*.spec.{ts,tsx}\"", "test:integration": "jest --testMatch \"/__tests__/integration/*.spec.{ts,tsx}\"", "test:smoke": "node ./__tests__/smoke", - "license-checker": "license-checker-rseidelsohn --production --json --out ./.licenselist.json", - "changelog": "conventional-changelog --preset conventionalcommits --release-count 0 --commit-path $PWD --pkg $PWD/package.json --infile $PWD/CHANGELOG.md --tag-prefix ${npm_package_name}/ --same-file" + "license-checker": "license-checker-rseidelsohn --production --json --out ./.licenselist.json" }, "repository": { "type": "git", diff --git a/packages/tool-block-paragraph/package.json b/packages/tool-block-paragraph/package.json index 4d40956..89ff978 100644 --- a/packages/tool-block-paragraph/package.json +++ b/packages/tool-block-paragraph/package.json @@ -1,7 +1,7 @@ { "private": false, "name": "@pdejs/tool-block-paragraph", - "version": "0.0.1", + "version": "0.0.2", "description": "Tool block paragraph plugin for Editor.js.", "main": "./dist/cjs.js", "module": "./dist/es.js", @@ -23,8 +23,7 @@ "tsc": "tsc --emitDeclarationOnly --declaration --declarationDir dist/types", "clear": "rimraf ./dist", "test": "jest", - "license-checker": "license-checker-rseidelsohn --production --json --out ./.licenselist.json", - "changelog": "conventional-changelog --preset conventionalcommits --release-count 0 --commit-path $PWD --pkg $PWD/package.json --infile $PWD/CHANGELOG.md --tag-prefix ${npm_package_name}/ --same-file" + "license-checker": "license-checker-rseidelsohn --production --json --out ./.licenselist.json" }, "repository": { "type": "git", @@ -46,6 +45,6 @@ }, "homepage": "https://github.com/cam-inc/pde.js#readme", "devDependencies": { - "@pdejs/core": "*" + "@pdejs/core": "0.0.2" } } diff --git a/packages/tool-inline-marker/package.json b/packages/tool-inline-marker/package.json index 608fca0..4f77996 100644 --- a/packages/tool-inline-marker/package.json +++ b/packages/tool-inline-marker/package.json @@ -1,7 +1,7 @@ { "private": false, "name": "@pdejs/tool-inline-marker", - "version": "0.0.1", + "version": "0.0.2", "description": "Tool inline marker plugin for Editor.js.", "main": "./dist/cjs.js", "module": "./dist/es.js", @@ -23,8 +23,7 @@ "tsc": "tsc --emitDeclarationOnly --declaration --declarationDir dist/types", "clear": "rimraf ./dist", "test": "jest", - "license-checker": "license-checker-rseidelsohn --production --json --out ./.licenselist.json", - "changelog": "conventional-changelog --preset conventionalcommits --release-count 0 --commit-path $PWD --pkg $PWD/package.json --infile $PWD/CHANGELOG.md --tag-prefix ${npm_package_name}/ --same-file" + "license-checker": "license-checker-rseidelsohn --production --json --out ./.licenselist.json" }, "repository": { "type": "git", @@ -46,6 +45,6 @@ }, "homepage": "https://github.com/cam-inc/pde.js#readme", "devDependencies": { - "@pdejs/core": "*" + "@pdejs/core": "0.0.2" } }