blob: 185a7f5fe40b61f63e44a9ce121de46da45b6251 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
--- build/lib/preLaunch.ts.orig 2022-02-09 21:24:27 UTC
+++ build/lib/preLaunch.ts
@@ -37,9 +37,9 @@ async function ensureNodeModules() {
}
}
-async function getElectron() {
- await runProcess(yarn, ['electron']);
-}
+// async function getElectron() {
+// await runProcess(yarn, ['electron']);
+// }
async function ensureCompiled() {
if (!(await exists('out'))) {
@@ -49,7 +49,7 @@ async function ensureCompiled() {
async function main() {
await ensureNodeModules();
- await getElectron();
+ // await getElectron();
await ensureCompiled();
// Can't require this until after dependencies are installed
|