@putout/engine-runner 14.1.0 β†’ 14.1.1

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.
Files changed (2) hide show
  1. package/README.md +10 -10
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -15,10 +15,10 @@ npm i @putout/engine-runner
15
15
 
16
16
  There is a couple plugin types supported by 🐊**Putout**:
17
17
 
18
- - βœ…[**Replacer**](#replacer)
19
- - βœ…[**Includer**](#includer)
20
- - βœ…[**Traverser**](#traverser)
21
- - βœ…[**Finder**](#finder)
18
+ - βœ… [**Replacer**](#replacer)
19
+ - βœ… [**Includer**](#includer)
20
+ - βœ… [**Traverser**](#traverser)
21
+ - βœ… [**Finder**](#finder)
22
22
 
23
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
24
 
@@ -219,7 +219,7 @@ module.exports.find = (ast, {push, traverse}) => {
219
219
 
220
220
  ```js
221
221
  const {runPlugins} = require('@putout/engine-runner');
222
- const {parse} = require('@putout/engin-parser');
222
+ const {parse} = require('@putout/engine-parser');
223
223
 
224
224
  const plugins = [{
225
225
  rule: 'remove-debugger',
@@ -248,11 +248,11 @@ const places = runPlugins({
248
248
  Stores is preferred way of keeping 🐊**Putout** data, `traverse` init function called only once, and any other way
249
249
  of handling variables will most likely will lead to bugs. There is a couple store types:
250
250
 
251
- - βœ…`listStore`;
252
- - βœ…`pathStore`;
253
- - βœ…`store`;
254
- - βœ…`upstore`;
255
- - βœ…`uplist`;
251
+ - βœ… [`listStore`](#liststore);
252
+ - βœ… [`pathStore`](#pathstore);
253
+ - βœ… [`store`](#store);
254
+ - βœ… [`upstore`](#upstore);
255
+ - βœ… [`uplist`](#uplist);
256
256
 
257
257
  Let's talk about each of them.
258
258
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@putout/engine-runner",
3
- "version": "14.1.0",
3
+ "version": "14.1.1",
4
4
  "type": "commonjs",
5
5
  "author": "coderaiser <mnemonic.enemy@gmail.com> (https://github.com/coderaiser)",
6
6
  "description": "Run 🐊Putout plugins",