Created
September 28, 2022 21:57
-
-
Save williamstein/5d1f5f77614c9a48d5adc9c2078647a8 to your computer and use it in GitHub Desktop.
converting local file 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
#!/usr/bin/env node | |
import * as fs from 'fs'; | |
import * as path from 'path'; | |
// https://gist.github.com/lovasoa/8691344 | |
async function* walk(dir) { | |
for await (const d of await fs.promises.opendir(dir)) { | |
const entry = path.join(dir, d.name); | |
if (d.isDirectory()) { | |
yield* walk(entry); | |
} else if (d.isFile()) { | |
yield entry; | |
} | |
} | |
} | |
function resolveImportPath(sourceFile, importPath, options) { | |
const sourceFileAbs = path.resolve(process.cwd(), sourceFile); | |
const root = path.dirname(sourceFileAbs); | |
const {moduleFilter = defaultModuleFilter} = options; | |
if (moduleFilter(importPath)) { | |
const importPathAbs = path.resolve(root, importPath); | |
let possiblePath = [ | |
path.resolve(importPathAbs, './index.ts'), | |
path.resolve(importPathAbs, './index.js'), | |
importPathAbs + '.ts', | |
importPathAbs + '.js', | |
]; | |
if (possiblePath.length) { | |
for (let i = 0; i < possiblePath.length; i++) { | |
let entry = possiblePath[i]; | |
if (fs.existsSync(entry)) { | |
const resolved = path.relative(root, entry.replace(/\.ts$/, '.js')); | |
if (!resolved.startsWith('.')) { | |
return './' + resolved; | |
} | |
return resolved; | |
} | |
} | |
} | |
} | |
return null; | |
} | |
function replace(filePath, outFilePath, options) { | |
const code = fs.readFileSync(filePath).toString(); | |
const newCode = code.replace( | |
/(import|export) (.+?) from ('[^\n']+'|"[^\n"]+");/gs, | |
function (found, action, imported, from) { | |
const importPath = from.slice(1, -1); | |
const resolvedPath = resolveImportPath(filePath, importPath, options); | |
if (resolvedPath) { | |
console.log('\t', importPath, resolvedPath); | |
return `${action} ${imported} from '${resolvedPath}';`; | |
} | |
return found; | |
}); | |
if (code !== newCode) { | |
fs.writeFileSync(outFilePath, newCode); | |
} | |
} | |
// Then, use it with a simple async for loop | |
async function run(srcDir, options = defaultOptions) { | |
const { | |
sourceFileFilter = defaultSourceFileFilter, | |
} = options; | |
for await (const entry of walk(srcDir)) { | |
if (sourceFileFilter(entry)) { | |
console.log(entry); | |
replace(entry, entry, options); | |
} | |
} | |
} | |
const defaultSourceFileFilter = function (sourceFilePath) { | |
return /\.(js|ts)$/.test(sourceFilePath) && !/node_modules/.test(sourceFilePath); | |
}; | |
const defaultModuleFilter = function (importedModule) { | |
return !path.isAbsolute(importedModule) && !importedModule.startsWith('@') && !importedModule.endsWith('.js'); | |
}; | |
const defaultOptions = { | |
sourceFileFilter: defaultSourceFileFilter, | |
moduleFilter : defaultModuleFilter, | |
}; | |
await run(path.dirname(process.cwd()), defaultOptions); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment