Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
50 lines
1.1 KiB
JavaScript
Executable File
50 lines
1.1 KiB
JavaScript
Executable File
#!/usr/bin/env node
|
|
|
|
/* Usage:
|
|
* node fixup_yarn_lock.js yarn.lock
|
|
*/
|
|
|
|
const fs = require("fs");
|
|
const readline = require("readline");
|
|
|
|
const urlToName = require("../lib/urlToName");
|
|
|
|
const yarnLockPath = process.argv[2];
|
|
|
|
const readFile = readline.createInterface({
|
|
input: fs.createReadStream(yarnLockPath, { encoding: "utf8" }),
|
|
|
|
// Note: we use the crlfDelay option to recognize all instances of CR LF
|
|
// ('\r\n') in input.txt as a single line break.
|
|
crlfDelay: Infinity,
|
|
|
|
terminal: false // input and output should be treated like a TTY
|
|
});
|
|
|
|
const result = [];
|
|
|
|
readFile
|
|
.on("line", line => {
|
|
const arr = line.match(/^ {2}resolved "([^#]+)(#[^"]+)?"$/);
|
|
|
|
if (arr !== null) {
|
|
const [_, url, shaOrRev] = arr;
|
|
|
|
const fileName = urlToName(url);
|
|
|
|
result.push(` resolved "${fileName}${shaOrRev ?? ""}"`);
|
|
} else {
|
|
result.push(line);
|
|
}
|
|
})
|
|
.on("close", () => {
|
|
fs.writeFile(yarnLockPath, result.join("\n"), "utf8", err => {
|
|
if (err) {
|
|
console.error(
|
|
"fixup_yarn_lock: fatal error when trying to write to yarn.lock",
|
|
err
|
|
);
|
|
}
|
|
});
|
|
});
|