@putout/engine-runner 12.6.0 → 13.0.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 +3 -1
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -20,6 +20,8 @@ There is a couple plugin types supported by 🐊`Putout`:
|
|
|
20
20
|
- ✅[`Traverser`](#traverser)
|
|
21
21
|
- ✅[`Finder`](#finder)
|
|
22
22
|
|
|
23
|
+
All of them supports subset of `JavaScript` 🦎[`PutoutScript`](https://github.com/coderaiser/putout/blob/master/docs/putout-script.md#-putoutscript) described in [@putout/compare](https://github.com/coderaiser/putout/tree/master/packages/compare#readme).
|
|
24
|
+
|
|
23
25
|
They goes from simplest to hardest. Let's start from `Replacer`.
|
|
24
26
|
|
|
25
27
|
### Replacer
|
|
@@ -160,7 +162,7 @@ module.exports.filter = (path) => {
|
|
|
160
162
|
const __ = 'hello';
|
|
161
163
|
```
|
|
162
164
|
|
|
163
|
-
Where `__` can be any node. All this possible with help of [@putout/compare](https://github.com/coderaiser/putout/tree/master/packages/compare). Templates format supported in `traverse` and `find` plugins as well.
|
|
165
|
+
Where `__` can be any node. All this possible with help of [@putout/compare](https://github.com/coderaiser/putout/tree/master/packages/compare#readme). Templates format supported in `traverse` and `find` plugins as well.
|
|
164
166
|
|
|
165
167
|
### Traverser
|
|
166
168
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@putout/engine-runner",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "13.0.0",
|
|
4
4
|
"type": "commonjs",
|
|
5
5
|
"author": "coderaiser <mnemonic.enemy@gmail.com> (https://github.com/coderaiser)",
|
|
6
6
|
"description": "run putout plugins",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"@babel/traverse": "^7.12.7",
|
|
28
28
|
"@babel/types": "^7.12.7",
|
|
29
29
|
"@putout/compare": "^8.0.0",
|
|
30
|
-
"@putout/engine-parser": "^
|
|
30
|
+
"@putout/engine-parser": "^5.0.0",
|
|
31
31
|
"@putout/operate": "^7.0.0",
|
|
32
32
|
"debug": "^4.1.1",
|
|
33
33
|
"jessy": "^3.0.0",
|
|
@@ -46,19 +46,19 @@
|
|
|
46
46
|
"c8": "^7.5.0",
|
|
47
47
|
"eslint": "^8.0.1",
|
|
48
48
|
"eslint-plugin-node": "^11.0.0",
|
|
49
|
-
"eslint-plugin-putout": "^
|
|
49
|
+
"eslint-plugin-putout": "^14.0.0",
|
|
50
50
|
"just-camel-case": "^4.0.2",
|
|
51
51
|
"lerna": "^4.0.0",
|
|
52
|
-
"madrun": "^
|
|
52
|
+
"madrun": "^9.0.0",
|
|
53
53
|
"mock-require": "^3.0.3",
|
|
54
54
|
"montag": "^1.0.0",
|
|
55
55
|
"nodemon": "^2.0.1",
|
|
56
56
|
"putout": "*",
|
|
57
|
-
"supertape": "^
|
|
57
|
+
"supertape": "^7.0.0"
|
|
58
58
|
},
|
|
59
59
|
"license": "MIT",
|
|
60
60
|
"engines": {
|
|
61
|
-
"node": ">=
|
|
61
|
+
"node": ">=16"
|
|
62
62
|
},
|
|
63
63
|
"publishConfig": {
|
|
64
64
|
"access": "public"
|