-
-
Notifications
You must be signed in to change notification settings - Fork 25
Open
Description
I am trying to edit a file that has a block like this
const reducers = combineReducers({
app,
home
});
I have been able to add a new key to it using this command:
tree.callExpression('combineReducers').arguments.at(0).key('test').value('test')
This ends up creating code like this:
const reducers = combineReducers({
app,
home,
test: test
});
How can I get it to result in this??:
const reducers = combineReducers({
app,
home,
test
});
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels