-
Notifications
You must be signed in to change notification settings - Fork 109
/
Copy pathrm-merge.js
35 lines (30 loc) · 1.01 KB
/
rm-merge.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
module.exports = (file, api, options) => {
const j = api.jscodeshift;
const getRequireCall = (path, moduleName) => {
const call = path
.findVariableDeclarators()
.filter(j.filters.VariableDeclarator.requiresModule(moduleName));
return call.size() == 1 ? call.get() : null;
};
const printOptions = options.printOptions || {quote: 'single'};
const root = j(file.source);
const flatten = a => Array.isArray(a) ? [].concat(...a.map(flatten)) : a;
const rmMergeCalls = path =>
j(path).replaceWith(j.objectExpression(
flatten(path.value.arguments.map(p =>
p.type == 'ObjectExpression' ? p.properties : j.spreadProperty(p)
))
));
const declarator = getRequireCall(root, 'merge');
if (declarator) {
const didTransform = root
.find(j.CallExpression, {callee: {name: declarator.value.id.name}})
.forEach(rmMergeCalls)
.size() > 0;
if (didTransform) {
j(declarator).remove();
return root.toSource(printOptions);
}
}
return null;
};