@anolilab/textlint-config 5.0.2 → 6.0.0
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.
- package/CHANGELOG.md +22 -1
- package/package.json +3 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,24 @@
|
|
|
1
|
+
## @anolilab/textlint-config [6.0.0](https://github.com/anolilab/javascript-style-guide/compare/@anolilab/textlint-config@5.0.3...@anolilab/textlint-config@6.0.0) (2023-06-11)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### ⚠ BREAKING CHANGES
|
|
5
|
+
|
|
6
|
+
* Changed the package to support cjs and mjs
|
|
7
|
+
|
|
8
|
+
Signed-off-by: prisis <d.bannert@anolilab.de>
|
|
9
|
+
|
|
10
|
+
### Features
|
|
11
|
+
|
|
12
|
+
* transformed lib from js to ts and added support for cjs and mjs ([823e96e](https://github.com/anolilab/javascript-style-guide/commit/823e96e03872f386793e884247196d4297fc0b99))
|
|
13
|
+
|
|
14
|
+
## @anolilab/textlint-config [5.0.3](https://github.com/anolilab/javascript-style-guide/compare/@anolilab/textlint-config@5.0.2...@anolilab/textlint-config@5.0.3) (2023-06-11)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Dependencies
|
|
19
|
+
|
|
20
|
+
* **@anolilab/semantic-release-preset:** upgraded to 3.1.0
|
|
21
|
+
|
|
1
22
|
## @anolilab/textlint-config [5.0.2](https://github.com/anolilab/javascript-style-guide/compare/@anolilab/textlint-config@5.0.1...@anolilab/textlint-config@5.0.2) (2023-06-11)
|
|
2
23
|
|
|
3
24
|
|
|
@@ -354,7 +375,7 @@ Signed-off-by: prisis <d.bannert@anolilab.de>
|
|
|
354
375
|
|
|
355
376
|
### Bug Fixes
|
|
356
377
|
|
|
357
|
-
- removed index.
|
|
378
|
+
- removed index.js from text-lint ([e5ab6d6](https://github.com/anolilab/javascript-style-guide/commit/e5ab6d6a9214b288646d471e19afff163ac5cf57))
|
|
358
379
|
|
|
359
380
|
### @anolilab/textlint-config [2.0.2](https://github.com/anolilab/javascript-style-guide/compare/@anolilab/textlint-config@2.0.1...@anolilab/textlint-config@2.0.2) (2021-05-04)
|
|
360
381
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@anolilab/textlint-config",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "6.0.0",
|
|
4
4
|
"description": "Anolilab Coding Standard for text linting.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"anolilab",
|
|
@@ -68,7 +68,8 @@
|
|
|
68
68
|
"write-good": "^1.0.8"
|
|
69
69
|
},
|
|
70
70
|
"devDependencies": {
|
|
71
|
-
"
|
|
71
|
+
"semantic-release": "^21.0.4",
|
|
72
|
+
"@anolilab/semantic-release-preset": "3.1.0",
|
|
72
73
|
"textlint": "^13.3.2"
|
|
73
74
|
},
|
|
74
75
|
"peerDependencies": {
|