1
- import { Arch , archFromString , asArray , log , spawn } from "builder-util"
1
+ import { asArray , log , spawn } from "builder-util"
2
2
import { pathExists } from "fs-extra"
3
+ import { Lazy } from "lazy-val"
3
4
import { homedir } from "os"
4
5
import * as path from "path"
5
6
import { Configuration } from "../configuration"
6
- import * as electronRebuild from "@electron/rebuild/lib/rebuild"
7
- import * as searchModule from "@electron/rebuild/lib/search-module"
8
- import { EventEmitter } from "events"
9
- import { Platform } from "../core"
7
+ import { executeAppBuilderAndWriteJson } from "./appBuilder"
8
+ import { NodeModuleDirInfo } from "./packageDependencies"
10
9
11
10
export async function installOrRebuild ( config : Configuration , appDir : string , options : RebuildOptions , forceInstall = false ) {
11
+ const effectiveOptions = {
12
+ buildFromSource : config . buildDependenciesFromSource === true ,
13
+ additionalArgs : asArray ( config . npmArgs ) ,
14
+ ...options ,
15
+ }
12
16
let isDependenciesInstalled = false
17
+
13
18
for ( const fileOrDir of [ "node_modules" , ".pnp.js" ] ) {
14
19
if ( await pathExists ( path . join ( appDir , fileOrDir ) ) ) {
15
20
isDependenciesInstalled = true
21
+
16
22
break
17
23
}
18
24
}
19
25
20
26
if ( forceInstall || ! isDependenciesInstalled ) {
21
- const effectiveOptions : RebuildOptions = {
22
- buildFromSource : config . buildDependenciesFromSource === true ,
23
- additionalArgs : asArray ( config . npmArgs ) ,
24
- ...options ,
25
- }
26
27
await installDependencies ( appDir , effectiveOptions )
27
28
} else {
28
- const arch = archFromString ( options . arch || process . arch )
29
- const platform = Platform . fromString ( options . platform || process . platform )
30
- await rebuild ( appDir , config . buildDependenciesFromSource === true , options . frameworkInfo , arch , platform )
29
+ await rebuild ( appDir , effectiveOptions )
31
30
}
32
31
}
33
32
@@ -120,8 +119,23 @@ function installDependencies(appDir: string, options: RebuildOptions): Promise<a
120
119
} )
121
120
}
122
121
123
- export async function nodeGypRebuild ( frameworkInfo : DesktopFrameworkInfo , arch : Arch , platform : Platform ) {
124
- return rebuild ( process . cwd ( ) , false , frameworkInfo , arch , platform )
122
+ export async function nodeGypRebuild ( platform : NodeJS . Platform , arch : string , frameworkInfo : DesktopFrameworkInfo ) {
123
+ log . info ( { platform, arch } , "executing node-gyp rebuild" )
124
+ // this script must be used only for electron
125
+ const nodeGyp = `node-gyp${ process . platform === "win32" ? ".cmd" : "" } `
126
+ const args = [ "rebuild" ]
127
+ // headers of old Electron versions do not have a valid config.gypi file
128
+ // and --force-process-config must be passed to node-gyp >= 8.4.0 to
129
+ // correctly build modules for them.
130
+ // see also https://github.com/nodejs/node-gyp/pull/2497
131
+ const [ major , minor ] = frameworkInfo . version
132
+ . split ( "." )
133
+ . slice ( 0 , 2 )
134
+ . map ( n => parseInt ( n , 10 ) )
135
+ if ( major <= 13 || ( major == 14 && minor <= 1 ) || ( major == 15 && minor <= 2 ) ) {
136
+ args . push ( "--force-process-config" )
137
+ }
138
+ await spawn ( nodeGyp , args , { env : getGypEnv ( frameworkInfo , platform , arch , true ) } )
125
139
}
126
140
127
141
function getPackageToolPath ( ) {
@@ -139,6 +153,7 @@ function isRunningYarn(execPath: string | null | undefined) {
139
153
140
154
export interface RebuildOptions {
141
155
frameworkInfo : DesktopFrameworkInfo
156
+ productionDeps ?: Lazy < Array < NodeModuleDirInfo > >
142
157
143
158
platform ?: NodeJS . Platform
144
159
arch ?: string
@@ -149,21 +164,17 @@ export interface RebuildOptions {
149
164
}
150
165
151
166
/** @internal */
152
- export async function rebuild ( appDir : string , buildFromSource : boolean , frameworkInfo : DesktopFrameworkInfo , arch : Arch , platform : Platform ) {
153
- log . info ( { arch : Arch [ arch ] , platform : platform . name , version : frameworkInfo . version , appDir } , "executing @electron/rebuild" )
154
- const rootPath = await searchModule . getProjectRootPath ( appDir )
155
- const rebuilderOptions : electronRebuild . RebuilderOptions = {
156
- buildPath : appDir ,
157
- electronVersion : frameworkInfo . version ,
158
- arch : Arch [ arch ] ,
159
- projectRootPath : rootPath ,
160
- disablePreGypCopy : true ,
161
- lifecycle : new EventEmitter ( ) ,
162
- }
163
- if ( buildFromSource ) {
164
- rebuilderOptions . prebuildTagPrefix = "totally-not-a-real-prefix-to-force-rebuild"
167
+ export async function rebuild ( appDir : string , options : RebuildOptions ) {
168
+ const configuration : any = {
169
+ dependencies : await options . productionDeps ! . value ,
170
+ nodeExecPath : process . execPath ,
171
+ platform : options . platform || process . platform ,
172
+ arch : options . arch || process . arch ,
173
+ additionalArgs : options . additionalArgs ,
174
+ execPath : process . env . npm_execpath || process . env . NPM_CLI_JS ,
175
+ buildFromSource : options . buildFromSource === true ,
165
176
}
166
- const rebuilder = new electronRebuild . Rebuilder ( rebuilderOptions )
167
- rebuilder . platform = platform . nodeName
168
- return rebuilder . rebuild ( )
177
+
178
+ const env = getGypEnv ( options . frameworkInfo , configuration . platform , configuration . arch , options . buildFromSource === true )
179
+ await executeAppBuilderAndWriteJson ( [ "rebuild-node-modules" ] , configuration , { env , cwd : appDir } )
169
180
}
0 commit comments