putout 29.12.2 → 29.12.4

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,32 @@
1
+ 2023.06.08, v29.12.4
2
+
3
+ feature:
4
+ - bc8b5dfbb @putout/plugin-convert-typeof-to-is-type: GENERAL
5
+ - 06e1b7ed6 @putout/plugin-putout: check-match: add
6
+ - 30a84b007 @putout/plugin-simplify-assignment: var support
7
+ - 2046af850 package: @putout/plugin-convert-object-entries-to-array-entries v2.0.0
8
+ - 8c9700b4e @putout/plugin-convert-object-entries-to-array-entries: use @putout/printer
9
+ - 8c3a8ecb6 @putout/plugin-convert-object-entries-to-array-entries: drop support of 🐊 < 29
10
+ - cd10d2f1f @putout/plugin-convert-object-entries-to-array-entries: templates
11
+ - a51fc987f @putout/plugin-putout: check-match: add
12
+ - b79256872 @putout/engine-parser: template: add ability to parse expression
13
+ - 2b26b974b @putout/plugin-react-hook-form: v6-convert-as-to-render: add support of name, onChange
14
+ - cf35764c6 @putout/plugin-appy-destructuring: falsy: add
15
+ - eaa6c501c @putout/plugin-react-hook-form: v7-apply-form-state: false positives
16
+ - fb36bf49d @putout/plugin-cloudcmd: convert-load-dir-to-change-dir: simplify
17
+ - d4d7bf1c3 @putout/opreate: rename: add support of no bindings
18
+ - 5823233ab @putout/plugin-react-hook: v6-convert-trigger-validation-to-trigger: improve
19
+ - 8dbdeafd9 @putout/operate: rename: improve support of deep rename
20
+ - b6fb17155 @putout/plugin-react-hook-form: improve support of v6-convert-trigger-validation-to-trigger
21
+ - c0b21210f eslint-plugin-putout: multiple-properties-destructuring: do not count ImportDefaultSpecifier
22
+ - d8aa5f4bc @putout/eslint: create-plugin: add ability to pass 'options' to 'filter()'
23
+
24
+ 2023.06.06, v29.12.3
25
+
26
+ feature:
27
+ - cbbdbb1fc package: @putout/plugin-merge-destructuring-properties v8.0.0
28
+ - 092a973e4 @putout/plugin-merge-destructuring-properties: drop support of 🐊 < 29
29
+
1
30
  2023.06.06, v29.12.2
2
31
 
3
32
  feature:
package/lib/loader.mjs CHANGED
@@ -37,7 +37,10 @@ export const transformSource = (source, context) => {
37
37
  };
38
38
  }
39
39
 
40
- const {code} = putout(source, options);
40
+ const {code} = putout(source, {
41
+ printer: 'putout',
42
+ ...options,
43
+ });
41
44
 
42
45
  return {
43
46
  source: code,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "putout",
3
- "version": "29.12.2",
3
+ "version": "29.12.4",
4
4
  "type": "commonjs",
5
5
  "author": "coderaiser <mnemonic.enemy@gmail.com> (https://github.com/coderaiser)",
6
6
  "description": "🐊 Pluggable and configurable code transformer with built-in ESLint, Babel and support of js, jsx, typescript, flow, markdown, yaml and json",
@@ -90,7 +90,7 @@
90
90
  "@putout/plugin-convert-index-of-to-includes": "^2.0.0",
91
91
  "@putout/plugin-convert-mock-require-to-mock-import": "^4.0.0",
92
92
  "@putout/plugin-convert-object-assign-to-merge-spread": "^6.0.0",
93
- "@putout/plugin-convert-object-entries-to-array-entries": "^1.0.0",
93
+ "@putout/plugin-convert-object-entries-to-array-entries": "^2.0.0",
94
94
  "@putout/plugin-convert-quotes-to-backticks": "^2.0.0",
95
95
  "@putout/plugin-convert-template-to-string": "^1.0.0",
96
96
  "@putout/plugin-convert-to-arrow-function": "^4.0.0",
@@ -107,7 +107,7 @@
107
107
  "@putout/plugin-madrun": "^15.0.0",
108
108
  "@putout/plugin-math": "^2.0.0",
109
109
  "@putout/plugin-maybe": "^1.0.0",
110
- "@putout/plugin-merge-destructuring-properties": "^7.0.0",
110
+ "@putout/plugin-merge-destructuring-properties": "^8.0.0",
111
111
  "@putout/plugin-merge-duplicate-functions": "^1.0.0",
112
112
  "@putout/plugin-merge-duplicate-imports": "^9.0.0",
113
113
  "@putout/plugin-merge-if-statements": "^3.0.0",