putout 22.0.0 → 22.0.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,18 @@
1
+ 2021.11.14, v22.0.1
2
+
3
+ fix:
4
+ - (putout) parse-options: read rules: directory with config -> current working directory
5
+ - test(@putout/engine-processor) markdown disable change without fix in favour of simpler rules
6
+ - feature(@putout/processor-markdown) add support of rules splited to fix and traverse
7
+
8
+ feature:
9
+ - (@putout/rules-set-homepage) update homepage so it linked to package directory (#88)
10
+ - (@putout/processor-markdown) add merge-heading-spaces
11
+ - (@putout/processor-markdown) add support of rules splited to fix and traverse
12
+ - (@putout/processor-markdown) rules: add remove-dependencies-badge (#85)
13
+ - (@putout/plugin-tape) remove-stop-all: add support of traceImport
14
+
15
+
1
16
  2021.11.10, v22.0.0
2
17
 
3
18
  feature:
@@ -56,7 +56,7 @@ module.exports = (info = {}) => {
56
56
 
57
57
  const resultOptions = merge(
58
58
  readCodeMods(),
59
- readRules(dir, rulesdir),
59
+ readRules('./', rulesdir),
60
60
  mergedOptions,
61
61
  mergedDefaultsMatch,
62
62
  mergedMatch,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "putout",
3
- "version": "22.0.0",
3
+ "version": "22.0.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",