/requiresToImports.js Secret
Last active
November 12, 2019 23:37
-
-
Save ide/f3266c3915b0e45dac78 to your computer and use it in GitHub Desktop.
Converts commonJS requires to es6 imports
This file contains 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
// converts commonJS requires to es6 imports | |
// var foo = require('foo'); | |
// -> | |
// import foo from 'foo'; | |
// | |
// jscodeshift -t requiresToImports.js src/**/*.js* | |
'use strict'; | |
module.exports = function(fileInfo, api) { | |
var j = api.jscodeshift; | |
return j(fileInfo.source) | |
.find(j.VariableDeclaration, { | |
declarations: [{ | |
type: 'VariableDeclarator', | |
init: { | |
type: 'CallExpression', | |
callee: { | |
type: 'Identifier', | |
name: 'require', | |
}, | |
}, | |
}], | |
}) | |
.filter(isTopLevel) | |
.forEach(function(path) { | |
const dec = path.value.declarations[0]; | |
const id = dec.id; | |
const source = dec.init.arguments[0]; | |
const comments = path.value.comments; | |
const loc = path.value.loc; | |
path.replace(j.importDeclaration([{type: 'ImportDefaultSpecifier', id}], source)); | |
path.value.loc = loc; | |
path.value.comments = comments; | |
}) | |
.toSource(); | |
}; | |
function isTopLevel(path) { | |
return !path.parentPath.parentPath.parentPath.parentPath; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I edited this to transform
into
Here's the updated version: