You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
331 B

2 months ago
import { promises } from "fs";
import { join } from "path";
import { BUILD_ID_FILE } from "../shared/lib/constants";
export async function writeBuildId(distDir, buildId) {
const buildIdPath = join(distDir, BUILD_ID_FILE);
await promises.writeFile(buildIdPath, buildId, "utf8");
}
//# sourceMappingURL=write-build-id.js.map