@putout/plugin-putout 29.20.0 → 29.22.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.
@@ -13,6 +13,7 @@ export const {
13
13
  'export const fix = () => path.__(__args)',
14
14
  'module.exports.fix = () => __body',
15
15
  'module.exports.fix = () => path.__(__args)',
16
+ 'module.exports.fix = () => __a(path)',
16
17
  ],
17
18
  }],
18
19
  });
@@ -1,5 +1,6 @@
1
1
  import filesystem from './filesystem.js';
2
2
  import json from './json.js';
3
+ import wasm from './wasm.js';
3
4
  import jsx from './jsx.js';
4
5
  import keyword from './keyword.js';
5
6
  import parens from './parens.js';
@@ -12,6 +13,7 @@ export default {
12
13
  ...creators,
13
14
  ...filesystem,
14
15
  ...json,
16
+ ...wasm,
15
17
  ...jsx,
16
18
  ...keyword,
17
19
  ...parens,
@@ -0,0 +1,5 @@
1
+ export default {
2
+ wrapInNamespace: 'const {wrapInNamespace} = operator',
3
+ unwrapNamespace: 'const {unwrapNamespace} = operator',
4
+ __wasm: 'const {__wasm} = operator',
5
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@putout/plugin-putout",
3
- "version": "29.20.0",
3
+ "version": "29.22.0",
4
4
  "type": "module",
5
5
  "author": "coderaiser <mnemonic.enemy@gmail.com> (https://github.com/coderaiser)",
6
6
  "description": "🐊Putout plugin helps with plugins development",