@putout/plugin-putout 26.9.0 β†’ 26.10.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/README.md CHANGED
@@ -169,7 +169,7 @@ Checkout in 🐊[**Putout Editor**](https://putout.cloudcmd.io/#/gist/fe78f6e489
169
169
  ### ❌ Example of incorrect code
170
170
 
171
171
  ```js
172
- path.node = identifier('x');
172
+ path.node = Identifier('x');
173
173
  ```
174
174
 
175
175
  ### βœ… Example of correct code
@@ -2,12 +2,14 @@ import filesystem from './filesystem.js';
2
2
  import json from './json.js';
3
3
  import keyword from './keyword.js';
4
4
  import parens from './parens.js';
5
+ import regexp from './regexp.js';
5
6
 
6
7
  export default {
7
8
  ...filesystem,
8
9
  ...json,
9
10
  ...keyword,
10
11
  ...parens,
12
+ ...regexp,
11
13
  operator: `import {operator} from 'putout'`,
12
14
  compare: 'const {compare} = operator',
13
15
  compareAll: 'const {compareAll} = operator',
@@ -24,7 +26,6 @@ export default {
24
26
  getBinding: 'const {getBinding} = operator',
25
27
  getBindingPath: 'const {getBindingPath} = operator',
26
28
  traverse: 'const {traverse} = operator',
27
- isSimpleRegExp: 'const {isSimpleRegExp} = operator',
28
29
  getTemplateValues: 'const {getTemplateValues} = operator',
29
30
  addArgs: 'const {addArgs} = operator',
30
31
  insertBefore: 'const {insertBefore} = operator',
@@ -0,0 +1,4 @@
1
+ export default {
2
+ transformRegExp: 'const {transformRegExp} = operator',
3
+ isSimpleRegExp: 'const {isSimpleRegExp} = operator',
4
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@putout/plugin-putout",
3
- "version": "26.9.0",
3
+ "version": "26.10.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",