putout 42.7.19 → 42.8.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.
package/ChangeLog CHANGED
@@ -1,3 +1,30 @@
1
+ 2026.07.06, v42.8.0
2
+
3
+ fix:
4
+ - 650f77bcb @putout/plugin-wasm: convert-get-local-to-local-get: namespace
5
+ - 29bce1980 @putout/plugin-wasm: apply-nesting: arguments order
6
+
7
+ feature:
8
+ - d7ed0bbfe @putout/plugin-wasm: convert-set-local-to-local-set
9
+ - d042458f9 @putout/plugin-wasm: convert-get-local-to-local-get: add
10
+ - d337b689b @putout/processor-wasm: apply-nesting from plugin-wasm
11
+ - 677d7be08 @putout/processor-wasm: drop support of 🐊 < 42
12
+ - a0767aaf5 @putout/processor-wasm: use nirguna printer/parser
13
+ - c2024efd2 @putout/plugin-wasm: add
14
+ - 122da1780 @putout/plugin-putout: declare: __wasm: add
15
+ - ecd89ab48 @putout/operator-wasm: add
16
+ - 904a3988e @putout/operator-wasm: add
17
+ - 5f148a289 @putout/test: overrides: extension: overlap with js - when extension passed it should have priority over js and ts
18
+ - 1a3531483 @putout/plugin-printer:remove-useless-print: add
19
+ - c5c8dde6e @putout/plugin-for-of: from-while: add
20
+ - 1932ad047 @putout/operator-type-checker: re-export types from @putout/printer/type-checker
21
+
22
+ 2026.07.02, v42.7.20
23
+
24
+ feature:
25
+ - 330693249 @putout/operator-remove-files: types
26
+ - 6bb844795 @putout/plugin-tape: remove-useless-undefined: add
27
+
1
28
  2026.06.30, v42.7.19
2
29
 
3
30
  feature:
package/lib/operator.js CHANGED
@@ -1,9 +1,10 @@
1
1
  export * from '@putout/operate';
2
2
  export * from '@putout/compare';
3
3
  export * from '@putout/traverse';
4
+ export * from '@putout/operator-declare';
4
5
  export * from '@putout/operator-json';
5
6
  export * from '@putout/operator-jsx';
6
- export * from '@putout/operator-declare';
7
+ export * from '@putout/operator-wasm';
7
8
  export * from '@putout/operator-regexp';
8
9
  export * from '@putout/operator-add-args';
9
10
  export * from '@putout/operator-filesystem';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "putout",
3
- "version": "42.7.19",
3
+ "version": "42.8.0",
4
4
  "type": "module",
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",
@@ -82,6 +82,7 @@
82
82
  "@putout/operator-ignore": "^6.0.0",
83
83
  "@putout/operator-json": "^3.0.0",
84
84
  "@putout/operator-jsx": "^3.0.0",
85
+ "@putout/operator-wasm": "^1.0.0",
85
86
  "@putout/operator-keyword": "^5.0.0",
86
87
  "@putout/operator-match-files": "^12.0.0",
87
88
  "@putout/operator-parens": "^4.0.0",
package/types/operator.ts CHANGED
@@ -3,6 +3,7 @@ export * from '@putout/operate';
3
3
  export * from '@putout/compare';
4
4
  export * from '@putout/traverse';
5
5
  export * from '@putout/operator-json';
6
+ export * from '@putout/operator-wasm';
6
7
  export * from '@putout/operator-jsx';
7
8
  export * from '@putout/operator-declare';
8
9
  export * from '@putout/operator-ignore';
@@ -14,4 +15,5 @@ export * from '@putout/operator-regexp';
14
15
  export * from '@putout/operator-find-file-up';
15
16
  export * from '@putout/operator-sort-ignore';
16
17
  export * from '@putout/operator-type-checker';
18
+ export * from '@putout/operator-remove-files';
17
19