@anolilab/textlint-config 2.0.9 → 3.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 CHANGED
@@ -1,3 +1,14 @@
1
+ ## @anolilab/textlint-config [3.0.0](https://github.com/anolilab/javascript-style-guide/compare/@anolilab/textlint-config@2.0.9...@anolilab/textlint-config@3.0.0) (2021-12-12)
2
+
3
+
4
+ ### ⚠ BREAKING CHANGES
5
+
6
+ * moved textlint out of dependencies, to fix a bug with missing bin, no it is a peerDependencies
7
+
8
+ ### Features
9
+
10
+ * moved textlint out of dependencies ([b5ded20](https://github.com/anolilab/javascript-style-guide/commit/b5ded20d72e4be78ae8bfe40001695d86e0935db))
11
+
1
12
  ### @anolilab/textlint-config [2.0.9](https://github.com/anolilab/javascript-style-guide/compare/@anolilab/textlint-config@2.0.8...@anolilab/textlint-config@2.0.9) (2021-12-02)
2
13
 
3
14
 
package/README.md CHANGED
@@ -17,7 +17,7 @@ Anolilab Coding Standard for text linting.
17
17
  ## Install
18
18
 
19
19
  ```bash
20
- npm install --dev-save @anolilab/textlint-config
20
+ npm install --dev-save @anolilab/textlint-config textlint
21
21
  ```
22
22
 
23
23
  ## Usage
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@anolilab/textlint-config",
3
- "version": "2.0.9",
3
+ "version": "3.0.0",
4
4
  "description": "Anolilab Coding Standard for text linting.",
5
5
  "keywords": [
6
6
  "anolilab",
@@ -44,7 +44,6 @@
44
44
  "@textlint-rule/textlint-rule-no-invalid-control-character": "2.0.0",
45
45
  "@textlint-rule/textlint-rule-no-unmatched-pair": "1.0.8",
46
46
  "@textlint-rule/textlint-rule-preset-google": "0.1.2",
47
- "textlint": "12.1.0",
48
47
  "textlint-filter-rule-comments": "^1.2.2",
49
48
  "textlint-rule-abbr-within-parentheses": "1.0.2",
50
49
  "textlint-rule-alex": "3.0.0",
@@ -61,6 +60,12 @@
61
60
  "textlint-rule-write-good": "2.0.0",
62
61
  "write-good": "1.0.8"
63
62
  },
63
+ "devDependencies": {
64
+ "textlint": "^12.1.0"
65
+ },
66
+ "peerDependencies": {
67
+ "textlint": "^12.1.0"
68
+ },
64
69
  "engines": {
65
70
  "node": ">=12"
66
71
  },