putout 20.6.0 → 20.6.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.
Files changed (3) hide show
  1. package/ChangeLog +15 -0
  2. package/package.json +1 -1
  3. package/putout.json +2 -1
package/ChangeLog CHANGED
@@ -1,3 +1,18 @@
1
+ 2021.10.01, v20.6.1
2
+
3
+ fix:
4
+ - (@putout/plugin-declare-undefined-variables) declare: template.ast -> template.ast.fresh
5
+ - (@putout/plugin-merge-duplicate-imports) report: Avoid duplicate imports
6
+ - (@putout/plugin-merge-duplicate-imports) importKind -> importKind=type
7
+
8
+ feature:
9
+ - (putout) *.md: disable declare-undefined-variables
10
+ - (@putout/cli-ruller) add support of tuple
11
+ - (@putout/plugin-declare-undefined-variables) add support of putout
12
+ - (@putout/eslint-config) add dot-notation (https://eslint.org/docs/rules/dot-notation)
13
+ - (@putout/plugin-merge-duplicate-imports) drop support of node < 14
14
+
15
+
1
16
  2021.10.01, v20.6.0
2
17
 
3
18
  feature:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "putout",
3
- "version": "20.6.0",
3
+ "version": "20.6.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",
package/putout.json CHANGED
@@ -37,7 +37,8 @@
37
37
  "remove-unused-for-of-variables": "off",
38
38
  "remove-constant-conditions": "off",
39
39
  "remove-console": "off",
40
- "remove-unreachable-code": "off"
40
+ "remove-unreachable-code": "off",
41
+ "declare-undefined-variables": "off"
41
42
  },
42
43
  "{*rc,*.{json,yml}}": {
43
44
  "remove-useless-escape": "off",