Skip to content

Commit

Permalink
fix: change order of actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Sergio committed Oct 22, 2020
1 parent 7b734e6 commit 9230ce4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion transforms/v2-to-v3.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ const transform: Transform = (fileInfo, api) => {
const root = j(fileInfo.source);

renameDefaultRenderToDefaultComponent(root, j)
pluralPropsChanges(root, j)
removeMacroWrap(root, j)
changeReactImportToNewImports(root, j)
changeJsxToCoreDeprecatedFuncs(root, j)
pluralPropsChanges(root, j)

return root.toSource();
};
Expand Down

0 comments on commit 9230ce4

Please sign in to comment.