From e33aa4ebabfae2f8e5fa0b95bb172403821b3c5a Mon Sep 17 00:00:00 2001 From: Ronan Jouchet Date: Mon, 6 Dec 2021 23:45:09 -0500 Subject: [PATCH] Fix 45.0.7 broken because of missing "chalk" dep (fix #1324) --- src/build/buildNativefierApp.ts | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/src/build/buildNativefierApp.ts b/src/build/buildNativefierApp.ts index 191d92f..67bee20 100644 --- a/src/build/buildNativefierApp.ts +++ b/src/build/buildNativefierApp.ts @@ -1,7 +1,6 @@ import * as path from 'path'; import * as electronGet from '@electron/get'; -import * as chalk from 'chalk'; import electronPackager from 'electron-packager'; import * as fs from 'fs-extra'; import * as log from 'loglevel'; @@ -131,11 +130,9 @@ export async function buildNativefierApp( rawOptions: RawOptions, ): Promise { log.warn( - new chalk.Instance().yellowBright.bold( - '\n\n Hi! Nativefier is minimally maintained these days, and needs more hands.\n' + - ' If you have the time & motivation, help with bugfixes and maintenance is VERY welcome.\n' + - ' Please go to https://github.com/nativefier/nativefier and help how you can. Thanks.\n\n', - ), + '\n\n Hi! Nativefier is minimally maintained these days, and needs more hands.\n' + + ' If you have the time & motivation, help with bugfixes and maintenance is VERY welcome.\n' + + ' Please go to https://github.com/nativefier/nativefier and help how you can. Thanks.\n\n', ); log.info('\nProcessing options...');