Skip to content

Commit

Permalink
v0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
azu committed Aug 5, 2020
1 parent 6a746fb commit 5489aaf
Show file tree
Hide file tree
Showing 16 changed files with 160 additions and 23 deletions.
31 changes: 31 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,37 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.7.0](https://github.com/textlint/editor/compare/v0.6.0...v0.7.0) (2020-08-05)


### Bug Fixes

* **text-checker-element:** remove console.log ([6625de3](https://github.com/textlint/editor/commit/6625de35cd8033916f9bc1a157bca6f3183a30e2))
* **textchecker-element:** add style to rule name ([a86ebd2](https://github.com/textlint/editor/commit/a86ebd2b7cf0c881f8639954a27bbe10f92fde5e))
* **textchecker-element:** add style to rule name ([e885db5](https://github.com/textlint/editor/commit/e885db5eff51004d5824d9923e8e11c65bba5dd8))
* **textchecker-element:** fix popup bug ([650b1d0](https://github.com/textlint/editor/commit/650b1d0051539023e90e46cc43aff5e7c0dd72a7))
* **textchecker-element:** remove unused code ([040724d](https://github.com/textlint/editor/commit/040724df18833ac3b0e5cf1ef1c48ab1cb973db1))
* **textchecker-element:** use id for search element ([7d4b9b8](https://github.com/textlint/editor/commit/7d4b9b88181684283599de573eb370c12f8bf66c))
* **textchecker-element:** when scroll and resize, update annotations ([b49c608](https://github.com/textlint/editor/commit/b49c6084fa7afa47c526ed44da029ecef6a0d4d3))
* **webextension:** add boot event ([34babc9](https://github.com/textlint/editor/commit/34babc969b22a8c492af51327d39d684118de5ef))
* **webextension:** fix fixAll and fixRule ([291ac1d](https://github.com/textlint/editor/commit/291ac1d5d59f58e573c9fc576d6258f2534ee092))
* **webextension:** support Firefox ([ddfc020](https://github.com/textlint/editor/commit/ddfc0200db0b2e6697ae37e192f199dd839c6654))


### Features

* add textlint-script-parser ([6a746fb](https://github.com/textlint/editor/commit/6a746fb879a5b4961d37d6f9fd4bfd8bd6286028))
* **script-editor:** add metadata to script ([569ef53](https://github.com/textlint/editor/commit/569ef53a682bc471a6af11daa6f31891637d1bd0))


### Performance Improvements

* **textchecker-element:** drop non-visible annotation ([8590b90](https://github.com/textlint/editor/commit/8590b9002a4093e7b65fd28c4990b094e4ed22f6))





# [0.6.0](https://github.com/textlint/editor/compare/v0.5.0...v0.6.0) (2020-08-02)


Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"useWorkspaces": true,
"npmClient": "yarn",
"version": "0.6.0"
"version": "0.7.0"
}
11 changes: 11 additions & 0 deletions packages/@textlint/config-loader/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.7.0](https://github.com/textlint/editor/compare/v0.6.0...v0.7.0) (2020-08-05)


### Features

* **script-editor:** add metadata to script ([569ef53](https://github.com/textlint/editor/commit/569ef53a682bc471a6af11daa6f31891637d1bd0))





# [0.6.0](https://github.com/textlint/editor/compare/v0.5.0...v0.6.0) (2020-08-02)

**Note:** Version bump only for package @textlint/config-loader
Expand Down
2 changes: 1 addition & 1 deletion packages/@textlint/config-loader/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@textlint/config-loader",
"version": "0.6.0",
"version": "0.7.0",
"description": "Config loader for textlint. .textlintrc loader",
"keywords": [
"textlint"
Expand Down
8 changes: 8 additions & 0 deletions packages/@textlint/runtime-helper/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.7.0](https://github.com/textlint/editor/compare/v0.6.0...v0.7.0) (2020-08-05)

**Note:** Version bump only for package @textlint/runtime-helper





# [0.6.0](https://github.com/textlint/editor/compare/v0.5.0...v0.6.0) (2020-08-02)

**Note:** Version bump only for package @textlint/runtime-helper
Expand Down
4 changes: 2 additions & 2 deletions packages/@textlint/runtime-helper/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@textlint/runtime-helper",
"version": "0.6.0",
"version": "0.7.0",
"description": "A runtime helper",
"homepage": "https://github.com/textlint/editor/tree/master/packages/@textlint/runtime-helper/",
"bugs": {
Expand Down Expand Up @@ -40,7 +40,7 @@
"trailingComma": "none"
},
"dependencies": {
"@textlint/config-loader": "^0.6.0",
"@textlint/config-loader": "^0.7.0",
"@textlint/kernel": "^3.3.6",
"@textlint/module-interop": "^1.1.4",
"@textlint/types": "^1.4.5",
Expand Down
11 changes: 11 additions & 0 deletions packages/@textlint/script-compiler/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.7.0](https://github.com/textlint/editor/compare/v0.6.0...v0.7.0) (2020-08-05)


### Features

* **script-editor:** add metadata to script ([569ef53](https://github.com/textlint/editor/commit/569ef53a682bc471a6af11daa6f31891637d1bd0))





# [0.6.0](https://github.com/textlint/editor/compare/v0.5.0...v0.6.0) (2020-08-02)


Expand Down
6 changes: 3 additions & 3 deletions packages/@textlint/script-compiler/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@textlint/script-compiler",
"version": "0.6.0",
"version": "0.7.0",
"description": "textlint script compiler tool",
"keywords": [
"textlint",
Expand Down Expand Up @@ -52,9 +52,9 @@
},
"dependencies": {
"@babel/core": "^7.11.0",
"@textlint/config-loader": "^0.6.0",
"@textlint/config-loader": "^0.7.0",
"@textlint/kernel": "^3.3.6",
"@textlint/runtime-helper": "^0.6.0",
"@textlint/runtime-helper": "^0.7.0",
"@textlint/types": "^1.4.5",
"babel-loader": "^8.1.0",
"babel-plugin-static-fs": "^3.0.0",
Expand Down
11 changes: 11 additions & 0 deletions packages/@textlint/script-parser/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Change Log

All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.7.0](https://github.com/textlint/editor/compare/v0.6.0...v0.7.0) (2020-08-05)


### Features

* add textlint-script-parser ([6a746fb](https://github.com/textlint/editor/commit/6a746fb879a5b4961d37d6f9fd4bfd8bd6286028))
2 changes: 1 addition & 1 deletion packages/@textlint/script-parser/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@textlint/script-parser",
"version": "0.6.0",
"version": "0.7.0",
"description": "A parser for textlint script",
"keywords": [
"textlint"
Expand Down
16 changes: 16 additions & 0 deletions packages/@textlint/website-generator/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,22 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.7.0](https://github.com/textlint/editor/compare/v0.6.0...v0.7.0) (2020-08-05)


### Bug Fixes

* **textchecker-element:** add style to rule name ([a86ebd2](https://github.com/textlint/editor/commit/a86ebd2b7cf0c881f8639954a27bbe10f92fde5e))


### Features

* **script-editor:** add metadata to script ([569ef53](https://github.com/textlint/editor/commit/569ef53a682bc471a6af11daa6f31891637d1bd0))





# [0.6.0](https://github.com/textlint/editor/compare/v0.5.0...v0.6.0) (2020-08-02)

**Note:** Version bump only for package @textlint/website-generator
Expand Down
4 changes: 2 additions & 2 deletions packages/@textlint/website-generator/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@textlint/website-generator",
"version": "0.6.0",
"version": "0.7.0",
"description": "Website generator using @textlint/script-compiler",
"keywords": [
"textlint"
Expand Down Expand Up @@ -47,7 +47,7 @@
"trailingComma": "none"
},
"dependencies": {
"@textlint/script-compiler": "^0.6.0",
"@textlint/script-compiler": "^0.7.0",
"meow": "^7.0.1",
"read-pkg": "^5.2.0"
},
Expand Down
28 changes: 28 additions & 0 deletions packages/textchecker-element/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,34 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.7.0](https://github.com/textlint/editor/compare/v0.6.0...v0.7.0) (2020-08-05)


### Bug Fixes

* **text-checker-element:** remove console.log ([6625de3](https://github.com/textlint/editor/commit/6625de35cd8033916f9bc1a157bca6f3183a30e2))
* **textchecker-element:** add style to rule name ([e885db5](https://github.com/textlint/editor/commit/e885db5eff51004d5824d9923e8e11c65bba5dd8))
* **textchecker-element:** fix popup bug ([650b1d0](https://github.com/textlint/editor/commit/650b1d0051539023e90e46cc43aff5e7c0dd72a7))
* **textchecker-element:** remove unused code ([040724d](https://github.com/textlint/editor/commit/040724df18833ac3b0e5cf1ef1c48ab1cb973db1))
* **textchecker-element:** use id for search element ([7d4b9b8](https://github.com/textlint/editor/commit/7d4b9b88181684283599de573eb370c12f8bf66c))
* **textchecker-element:** when scroll and resize, update annotations ([b49c608](https://github.com/textlint/editor/commit/b49c6084fa7afa47c526ed44da029ecef6a0d4d3))
* **webextension:** fix fixAll and fixRule ([291ac1d](https://github.com/textlint/editor/commit/291ac1d5d59f58e573c9fc576d6258f2534ee092))
* **webextension:** support Firefox ([ddfc020](https://github.com/textlint/editor/commit/ddfc0200db0b2e6697ae37e192f199dd839c6654))


### Features

* **script-editor:** add metadata to script ([569ef53](https://github.com/textlint/editor/commit/569ef53a682bc471a6af11daa6f31891637d1bd0))


### Performance Improvements

* **textchecker-element:** drop non-visible annotation ([8590b90](https://github.com/textlint/editor/commit/8590b9002a4093e7b65fd28c4990b094e4ed22f6))





# [0.6.0](https://github.com/textlint/editor/compare/v0.5.0...v0.6.0) (2020-08-02)

**Note:** Version bump only for package textchecker-element
Expand Down
4 changes: 2 additions & 2 deletions packages/textchecker-element/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "textchecker-element",
"version": "0.6.0",
"version": "0.7.0",
"description": "Overlay text checker web compoentns.",
"keywords": [
"webcomponent",
Expand Down Expand Up @@ -53,7 +53,7 @@
"trailingComma": "none"
},
"devDependencies": {
"@textlint/script-compiler": "^0.6.0",
"@textlint/script-compiler": "^0.7.0",
"@types/mocha": "^8.0.0",
"@types/node": "^14.0.26",
"@types/rimraf": "^3.0.0",
Expand Down
21 changes: 21 additions & 0 deletions packages/webextension/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,27 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.7.0](https://github.com/textlint/editor/compare/v0.6.0...v0.7.0) (2020-08-05)


### Bug Fixes

* **textchecker-element:** remove unused code ([040724d](https://github.com/textlint/editor/commit/040724df18833ac3b0e5cf1ef1c48ab1cb973db1))
* **textchecker-element:** when scroll and resize, update annotations ([b49c608](https://github.com/textlint/editor/commit/b49c6084fa7afa47c526ed44da029ecef6a0d4d3))
* **webextension:** add boot event ([34babc9](https://github.com/textlint/editor/commit/34babc969b22a8c492af51327d39d684118de5ef))
* **webextension:** fix fixAll and fixRule ([291ac1d](https://github.com/textlint/editor/commit/291ac1d5d59f58e573c9fc576d6258f2534ee092))
* **webextension:** support Firefox ([ddfc020](https://github.com/textlint/editor/commit/ddfc0200db0b2e6697ae37e192f199dd839c6654))


### Features

* add textlint-script-parser ([6a746fb](https://github.com/textlint/editor/commit/6a746fb879a5b4961d37d6f9fd4bfd8bd6286028))
* **script-editor:** add metadata to script ([569ef53](https://github.com/textlint/editor/commit/569ef53a682bc471a6af11daa6f31891637d1bd0))





# [0.6.0](https://github.com/textlint/editor/compare/v0.5.0...v0.6.0) (2020-08-02)

**Note:** Version bump only for package @textlint/webextension
Expand Down
22 changes: 11 additions & 11 deletions packages/webextension/package.json
Original file line number Diff line number Diff line change
@@ -1,39 +1,39 @@
{
"private": true,
"name": "@textlint/webextension",
"version": "0.6.0",
"version": "0.7.0",
"description": "textlint editor",
"scripts": {
"dev": "webextension-toolbox dev",
"build": "webextension-toolbox build"
},
"devDependencies": {
"@types/minimatch": "^3.0.3",
"@types/react": "^16.9.44",
"@types/react-dom": "^16.9.8",
"@types/minimatch": "^3.0.3",
"copy-webpack-plugin": "^6.0.3",
"css-loader": "^4.2.0",
"style-loader": "^1.2.1",
"ts-loader": "^8.0.1",
"webextension-toolbox": "^3.0.0",
"webpack": "^4.44.0",
"webpack-watched-glob-entries-plugin": "^2.1.6",
"css-loader": "^4.2.0",
"style-loader": "^1.2.1"
"webpack-watched-glob-entries-plugin": "^2.1.6"
},
"dependencies": {
"react": "^16.13.1",
"react-dom": "^16.13.1",
"@spectrum-icons/workflow": "^3.1.0",
"@react-stately/data": "^3.1.0",
"@adobe/react-spectrum": "^3.1.0",
"@react-stately/data": "^3.1.0",
"@spectrum-icons/workflow": "^3.1.0",
"@textlint/script-parser": "^0.7.0",
"@textlint/types": "^1.4.5",
"@textlint/script-parser": "^0.6.0",
"@webcomponents/custom-elements": "^1.4.2",
"comlink": "^4.3.0",
"comlink-extension": "^1.0.8",
"enable-webcomponents-in-content-scripts": "^1.0.7",
"idb": "^5.0.4",
"minimatch": "^3.0.4",
"textchecker-element": "^0.6.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"textchecker-element": "^0.7.0",
"webextension-polyfill-ts": "^0.19.0"
}
}

0 comments on commit 5489aaf

Please sign in to comment.