putout 20.19.0 → 20.19.1

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 CHANGED
@@ -1,3 +1,9 @@
1
+ 2021.10.29, v20.19.1
2
+
3
+ fix:
4
+ - (putout) --help: --match [file name] -> --match [pattern]
5
+
6
+
1
7
  2021.10.28, v20.19.0
2
8
 
3
9
  fix:
package/README.md CHANGED
@@ -121,7 +121,7 @@ Options:
121
121
  --disable [rule] disable the rule and save it to '.putout.json' walking up parent directories
122
122
  --enable-all enable all found rules and save them to '.putout.json' walking up parent directories
123
123
  --disable-all disable all found rules (set baseline) and save them '.putout.json' walking up parent directories
124
- --match [file name] read .putout.json and convert 'rules' to 'match' using pattern
124
+ --match [pattern] read .putout.json and convert 'rules' to 'match' according to 'pattern'
125
125
  --flow enable flow
126
126
  --fresh generate a fresh cache
127
127
  --no-config avoid reading '.putout.json'
package/help.json CHANGED
@@ -12,7 +12,7 @@
12
12
  "--disable [rule] ": "disable the rule and save it to '.putout.json' walking up parent directories",
13
13
  "--enable-all ": "enable all found rules and save them to '.putout.json' walking up parent directories",
14
14
  "--disable-all ": "disable all found rules (set baseline) and save them to '.putout.json' walking up parent directories",
15
- "--match [file name] ": "read .putout.json and convert 'rules' to 'match' using pattern",
15
+ "--match [pattern] ": "read .putout.json and convert 'rules' to 'match' according to 'pattern'",
16
16
  "--flow ": "enable flow",
17
17
  "--fresh ": "generate a fresh cache",
18
18
  "--no-config ": "avoid reading '.putout.json'",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "putout",
3
- "version": "20.19.0",
3
+ "version": "20.19.1",
4
4
  "author": "coderaiser <mnemonic.enemy@gmail.com> (https://github.com/coderaiser)",
5
5
  "description": "🐊 Pluggable and configurable code transformer with built-in eslint, babel plugins and jscodeshift codemods support of js, jsx typescript, flow files, markdown, yaml and json",
6
6
  "homepage": "http://github.com/coderaiser/putout",