mirror of
https://github.com/swc-project/swc.git
synced 2024-11-28 02:29:04 +03:00
37 lines
893 B
JavaScript
37 lines
893 B
JavaScript
const readline = require("readline");
|
|
const fs = require("fs").promises;
|
|
const path = require("path");
|
|
|
|
const rl = readline.createInterface({
|
|
input: process.stdin,
|
|
output: process.stdout,
|
|
terminal: false,
|
|
});
|
|
|
|
function looseJsonParse(obj) {
|
|
return Function('"use strict";return (' + obj + ")")();
|
|
}
|
|
rl.on("line", async (data) => {
|
|
try {
|
|
const { name, source } = looseJsonParse(`(${data})`);
|
|
const targetPath = path.join(
|
|
__dirname,
|
|
"..",
|
|
"..",
|
|
"tests",
|
|
"fixture",
|
|
"next",
|
|
"raw",
|
|
name.replace(".js", ""),
|
|
"input.js"
|
|
);
|
|
|
|
await fs.mkdir(path.dirname(targetPath), { recursive: true });
|
|
|
|
await fs.writeFile(targetPath, source, "utf8");
|
|
} catch (e) {
|
|
console.log(`Code: (${data})`);
|
|
console.error(e);
|
|
}
|
|
});
|