konva/rename-imports.mjs

48 lines
1.3 KiB
JavaScript
Raw Permalink Normal View History

2021-05-09 20:22:41 +08:00
import FileHound from 'filehound';
import fs from 'fs';
2023-02-15 20:39:28 +08:00
const files = FileHound.create().paths('./lib').ext(['js', 'ts']).find();
2021-05-09 20:22:41 +08:00
files.then((filePaths) => {
filePaths.forEach((filepath) => {
fs.readFile(filepath, 'utf8', (err, text) => {
if (!text.match(/import .* from/g)) {
return;
}
text = text.replace(/(import .* from\s+['"])(.*)(?=['"])/g, '$1$2.js');
if (text.match(/export .* from/g)) {
text = text.replace(/(export .* from\s+['"])(.*)(?=['"])/g, '$1$2.js');
}
if (err) throw err;
// stupid replacement back
text = text.replace(
2021-05-09 21:11:42 +08:00
"import * as Canvas from 'canvas.js';",
"import * as Canvas from 'canvas';"
2021-05-09 20:22:41 +08:00
);
2023-02-15 20:39:28 +08:00
// Handle import("./x/y/z") syntax.
text = text.replace(/(import\s*\(\s*['"])(.*)(?=['"])/g, '$1$2.js');
2021-05-09 20:22:41 +08:00
fs.writeFile(filepath, text, function (err) {
if (err) {
throw err;
}
});
});
});
});
2023-04-14 12:27:56 +08:00
const indexFiles = ['lib/index.js', 'lib/index-node.js', 'lib/Core.js'];
indexFiles.forEach((filepath) => {
fs.readFile(filepath, 'utf8', (err, text) => {
text = text.replace('exports.default =', 'module.exports =');
fs.writeFile(filepath, text, function (err) {
if (err) {
throw err;
}
});
});
});