PGP build fixes

This commit is contained in:
Darren Clarke 2023-05-10 11:10:32 +00:00
parent 60e590f75c
commit 0e0f081a79
9 changed files with 7 additions and 13 deletions

View file

@ -60,7 +60,7 @@ export const createZPM = async ({ name, displayName, version }: Record<string, s
const main = async () => {
const packageJSON = JSON.parse(await fs.readFile("./package.json", "utf-8"));
const { name, displayName, version } = packageJSON;
console.log(`Building ${displayName} v${version}`);
console.log(`Building addon ${displayName} v${version}`);
await createZPM({ name, displayName, version });
}