chore: yarn removed from scripts

This commit is contained in:
Nishchit14
2023-02-03 04:52:05 +00:00
parent dd31df541d
commit a1a0362cbf
13 changed files with 23 additions and 23 deletions

View File

@@ -172,11 +172,11 @@ if (env === Environment.Production) {
// Add library: electron
cd('build/production');
exec(
'export NODE_ENV=development && yarn install && yarn add_electron && export NODE_ENV=production'
'export NODE_ENV=development && pnpm install && pnpm add_electron && export NODE_ENV=production'
);
// Add library: electron-oauth-helper
exec('yarn add ../../../firecamp-forks/electron-oauth-helper -W');
exec('pnpm add ../../../firecamp-forks/electron-oauth-helper -W');
// Prepare linux os 'AppImage' build
if (process.env.AppFormat === AppFormat.AppImage) {