This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export default function transformer(file, api) { | |
const j = api.jscodeshift; | |
return j(file.source) | |
/* get all imports with the right local name and source */ | |
.find(j.ImportDeclaration, { | |
specifiers: [{ | |
local:{ | |
name:"Helmet" | |
} |