@anolilab/textlint-config 4.2.1 → 5.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 +25 -1
- package/package.json +6 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,27 @@
|
|
|
1
|
+
## @anolilab/textlint-config [5.0.0](https://github.com/anolilab/javascript-style-guide/compare/@anolilab/textlint-config@4.2.2...@anolilab/textlint-config@5.0.0) (2023-06-10)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### ⚠ BREAKING CHANGES
|
|
5
|
+
|
|
6
|
+
* Changed the package to support cjs and mjs, so the type module was removed
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* switched js to ts, created a new package-utils package ([5477591](https://github.com/anolilab/javascript-style-guide/commit/5477591aa46d878b8535ff8503384e27ca537a7f))
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Dependencies
|
|
15
|
+
|
|
16
|
+
* **@anolilab/semantic-release-preset:** upgraded to 3.0.0
|
|
17
|
+
|
|
18
|
+
## @anolilab/textlint-config [4.2.2](https://github.com/anolilab/javascript-style-guide/compare/@anolilab/textlint-config@4.2.1...@anolilab/textlint-config@4.2.2) (2023-05-26)
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
### Bug Fixes
|
|
22
|
+
|
|
23
|
+
* **deps:** update renovate-meta ([887c740](https://github.com/anolilab/javascript-style-guide/commit/887c7407701e0eeb6c7d9c161b79a02793f9307b))
|
|
24
|
+
|
|
1
25
|
## @anolilab/textlint-config [4.2.1](https://github.com/anolilab/javascript-style-guide/compare/@anolilab/textlint-config@4.2.0...@anolilab/textlint-config@4.2.1) (2023-05-25)
|
|
2
26
|
|
|
3
27
|
|
|
@@ -316,7 +340,7 @@ Signed-off-by: prisis <d.bannert@anolilab.de>
|
|
|
316
340
|
|
|
317
341
|
### Bug Fixes
|
|
318
342
|
|
|
319
|
-
- removed index.
|
|
343
|
+
- removed index.ts from text-lint ([e5ab6d6](https://github.com/anolilab/javascript-style-guide/commit/e5ab6d6a9214b288646d471e19afff163ac5cf57))
|
|
320
344
|
|
|
321
345
|
### @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)
|
|
322
346
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@anolilab/textlint-config",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "5.0.0",
|
|
4
4
|
"description": "Anolilab Coding Standard for text linting.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"anolilab",
|
|
@@ -64,17 +64,18 @@
|
|
|
64
64
|
"write-good": "1.0.8"
|
|
65
65
|
},
|
|
66
66
|
"devDependencies": {
|
|
67
|
-
"
|
|
68
|
-
"
|
|
67
|
+
"@anolilab/semantic-release-preset": "3.0.0",
|
|
68
|
+
"textlint": "^13.3.2"
|
|
69
69
|
},
|
|
70
70
|
"peerDependencies": {
|
|
71
|
-
"textlint": "^
|
|
71
|
+
"textlint": "^13.3.2"
|
|
72
72
|
},
|
|
73
73
|
"engines": {
|
|
74
74
|
"node": ">=16"
|
|
75
75
|
},
|
|
76
76
|
"publishConfig": {
|
|
77
|
-
"access": "public"
|
|
77
|
+
"access": "public",
|
|
78
|
+
"provenance": true
|
|
78
79
|
},
|
|
79
80
|
"pnpm": {
|
|
80
81
|
"overrides": {
|