mirror of
https://github.com/pavlobu/deskreen.git
synced 2025-05-16 07:20:16 -07:00
23 lines
671 B
JavaScript
23 lines
671 B
JavaScript
import path from 'path';
|
|
import { execSync } from 'child_process';
|
|
import fs from 'fs';
|
|
import { dependencies } from '../../app/package.json';
|
|
|
|
const nodeModulesPath = path.join(__dirname, '..', '..', 'app', 'node_modules');
|
|
|
|
if (
|
|
Object.keys(dependencies || {}).length > 0 &&
|
|
fs.existsSync(nodeModulesPath)
|
|
) {
|
|
const electronRebuildCmd =
|
|
'../node_modules/.bin/electron-rebuild --parallel --force --types prod,dev,optional --module-dir .';
|
|
const cmd =
|
|
process.platform === 'win32'
|
|
? electronRebuildCmd.replace(/\//g, '\\')
|
|
: electronRebuildCmd;
|
|
execSync(cmd, {
|
|
cwd: path.join(__dirname, '..', '..', 'app'),
|
|
stdio: 'inherit',
|
|
});
|
|
}
|