Update logging

This commit is contained in:
Darren Clarke 2025-01-22 17:50:38 +01:00
parent def602c05e
commit 810a333429
39 changed files with 85 additions and 139 deletions

View file

@ -6,7 +6,7 @@ import path from "path";
import os from "os";
const packageFile = async (actualPath: string): Promise<any> => {
console.log(`Packaging: ${actualPath}`);
console.info(`Packaging: ${actualPath}`);
const packagePath = actualPath.slice(4);
const data = await fs.readFile(actualPath, "utf-8");
const content = Buffer.from(data, "utf-8").toString("base64");
@ -74,7 +74,7 @@ export const createZPM = async ({
for (const file of files) {
await fs.unlink(file);
console.log(`${file} was deleted`);
console.info(`${file} was deleted`);
}
} catch (err) {
console.error(err);
@ -89,7 +89,7 @@ export const createZPM = async ({
const main = async () => {
const packageJSON = JSON.parse(await fs.readFile("./package.json", "utf-8"));
const { name: fullName, displayName, version } = packageJSON;
console.log(`Building addon ${displayName} v${version}`);
console.info(`Building addon ${displayName} v${version}`);
const name = fullName.split("/").pop();
await createZPM({ name, displayName, version });
};