putout 21.2.0 → 21.3.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.
Files changed (3) hide show
  1. package/ChangeLog +13 -0
  2. package/package.json +2 -1
  3. package/putout.json +2 -0
package/ChangeLog CHANGED
@@ -1,3 +1,16 @@
1
+ 2021.11.08, v21.3.0
2
+
3
+ feature:
4
+ - (@putout/plugin-convert-quotes-to-backticks) add
5
+ - (@putout/plugin-remove-useless-escape) add support of escaping single quotes in backquotes
6
+ - (eslint-plugin-putout) add remove-newline-from-empty-object
7
+ - (eslint-plugin-putout) add remove-empty-newline-after-last-specifier
8
+ - (@putout/plugin-declare-undefined-variables) add support of child_process
9
+ - (@putout/plugin-declare-undefined-variables) add pullout, pipe-io
10
+ - (@putout/plugin-declare-undefined-variables) add support of os
11
+ - (@putout/plugin-declare-undefined-variables) add currify, wraptile
12
+
13
+
1
14
  2021.11.06, v21.2.0
2
15
 
3
16
  fix:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "putout",
3
- "version": "21.2.0",
3
+ "version": "21.3.0",
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",
@@ -98,6 +98,7 @@
98
98
  "@putout/plugin-convert-math-pow": "^4.0.0",
99
99
  "@putout/plugin-convert-mock-require-to-mock-import": "^1.0.0",
100
100
  "@putout/plugin-convert-object-assign-to-merge-spread": "^5.0.0",
101
+ "@putout/plugin-convert-quotes-to-backticks": "^1.0.0",
101
102
  "@putout/plugin-convert-template-to-string": "^1.0.0",
102
103
  "@putout/plugin-convert-to-arrow-function": "^3.0.0",
103
104
  "@putout/plugin-convert-top-level-return": "^4.0.0",
package/putout.json CHANGED
@@ -40,6 +40,7 @@
40
40
  "declare-undefined-variables": "off"
41
41
  },
42
42
  "{*rc,*.{json,yml}}": {
43
+ "convert-quotes-to-backticks": "off",
43
44
  "remove-useless-escape": "off",
44
45
  "apply-numeric-separators": "off"
45
46
  },
@@ -225,6 +226,7 @@
225
226
  "convert-mock-require-to-mock-import",
226
227
  "convert-assignment-to-arrow-function",
227
228
  "convert-assignment-to-comparison",
229
+ "convert-quotes-to-backticks",
228
230
  "merge-destructuring-properties",
229
231
  "merge-duplicate-imports",
230
232
  "merge-if-statements",