@anolilab/textlint-config 4.2.2 → 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 +18 -1
- package/package.json +5 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,20 @@
|
|
|
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
|
+
|
|
1
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)
|
|
2
19
|
|
|
3
20
|
|
|
@@ -323,7 +340,7 @@ Signed-off-by: prisis <d.bannert@anolilab.de>
|
|
|
323
340
|
|
|
324
341
|
### Bug Fixes
|
|
325
342
|
|
|
326
|
-
- removed index.
|
|
343
|
+
- removed index.ts from text-lint ([e5ab6d6](https://github.com/anolilab/javascript-style-guide/commit/e5ab6d6a9214b288646d471e19afff163ac5cf57))
|
|
327
344
|
|
|
328
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)
|
|
329
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,8 +64,8 @@
|
|
|
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
71
|
"textlint": "^13.3.2"
|
|
@@ -74,7 +74,8 @@
|
|
|
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": {
|