forked from phobal/ivideo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix electron-rebuild script * Added node_modules path existence check for rebuild script
- Loading branch information
Showing
1 changed file
with
14 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,21 @@ | ||
// @flow | ||
import path from 'path'; | ||
import { execSync } from 'child_process'; | ||
import fs from 'fs'; | ||
import dependencies from '../../app/package.json'; | ||
|
||
const electronRebuildCmd = | ||
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; | ||
const cmd = process.platform === 'win32' | ||
? electronRebuildCmd.replace(/\//g, '\\') | ||
: electronRebuildCmd; | ||
|
||
execSync(cmd, { | ||
cwd: path.join(__dirname, '..', '..', 'app') | ||
}); | ||
execSync(cmd, { | ||
cwd: path.join(__dirname, '..', '..', 'app') | ||
}); | ||
} |