@putout/plugin-putout 28.5.0 → 28.5.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.
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import {operator} from 'putout';
|
|
2
|
-
import fullstore from 'fullstore';
|
|
3
2
|
|
|
4
3
|
const {replaceWith} = operator;
|
|
5
4
|
|
|
@@ -12,8 +11,8 @@ export const fix = ({path, calleePath, property, object}) => {
|
|
|
12
11
|
path.node.arguments.unshift(object);
|
|
13
12
|
};
|
|
14
13
|
|
|
15
|
-
export const traverse = ({push}) => {
|
|
16
|
-
const isInserted =
|
|
14
|
+
export const traverse = ({push, store}) => {
|
|
15
|
+
const isInserted = store();
|
|
17
16
|
|
|
18
17
|
return {
|
|
19
18
|
CallExpression(path) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@putout/plugin-putout",
|
|
3
|
-
"version": "28.5.
|
|
3
|
+
"version": "28.5.1",
|
|
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",
|
|
@@ -31,7 +31,6 @@
|
|
|
31
31
|
"create:declare:types": "madrun create:declare:types"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"fullstore": "^3.0.0",
|
|
35
34
|
"just-camel-case": "^6.2.0",
|
|
36
35
|
"just-kebab-case": "^4.2.0",
|
|
37
36
|
"regexp.escape": "^2.0.1",
|