Skip to content

Commit

Permalink
chore: bump version v0.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
shuta13 committed Oct 12, 2022
1 parent a87cd49 commit b4fc589
Show file tree
Hide file tree
Showing 6 changed files with 38 additions and 15 deletions.
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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))

8 changes: 5 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,21 @@
{
"private": true,
"private": false,
"name": "pdejs",
"version": "0.0.1",
"version": "0.0.2",
"volta": {
"node": "16.14.2"
},
"license": "Apache-2.0",
"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": {
Expand Down
1 change: 0 additions & 1 deletion packages/core/CHANGELOG.md

This file was deleted.

5 changes: 2 additions & 3 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand All @@ -26,8 +26,7 @@
"test:unit": "jest --testMatch \"<rootDir>/__tests__/unit/*.spec.{ts,tsx}\"",
"test:integration": "jest --testMatch \"<rootDir>/__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",
Expand Down
7 changes: 3 additions & 4 deletions packages/tool-block-paragraph/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand All @@ -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",
Expand All @@ -46,6 +45,6 @@
},
"homepage": "https://github.com/cam-inc/pde.js#readme",
"devDependencies": {
"@pdejs/core": "*"
"@pdejs/core": "0.0.2"
}
}
7 changes: 3 additions & 4 deletions packages/tool-inline-marker/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand All @@ -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",
Expand All @@ -46,6 +45,6 @@
},
"homepage": "https://github.com/cam-inc/pde.js#readme",
"devDependencies": {
"@pdejs/core": "*"
"@pdejs/core": "0.0.2"
}
}

0 comments on commit b4fc589

Please sign in to comment.