-
-
Notifications
You must be signed in to change notification settings - Fork 510
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: update electron-builder and ci runner images
- Loading branch information
Showing
6 changed files
with
748 additions
and
191 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
15 changes: 15 additions & 0 deletions
15
.yarn/patches/app-builder-lib-npm-26.0.0-alpha.7-e1b3dca119.patch
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
diff --git a/out/util/filter.js b/out/util/filter.js | ||
index 369783eff5c64c342831dd3544c3f51e490b0e93..299448962c25c63cfcbc891de22fcb7d5f67c80e 100644 | ||
--- a/out/util/filter.js | ||
+++ b/out/util/filter.js | ||
@@ -41,7 +41,9 @@ function createFilter(src, patterns, excludePatterns) { | ||
let relative = getRelativePath(file, srcWithEndSlash, stat); | ||
// filter the root node_modules, but not a subnode_modules (like /appDir/others/foo/node_modules/blah) | ||
if (relative === "node_modules") { | ||
- return false; | ||
+ // return false; | ||
+ // HACK: we want the root node_modules | ||
+ return true | ||
} | ||
else if (relative.endsWith("/node_modules")) { | ||
relative += "/"; |
This file was deleted.
Oops, something went wrong.
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
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 |
---|---|---|
|
@@ -49,9 +49,9 @@ | |
"zx": "^8.2.4" | ||
}, | ||
"resolutions": { | ||
"app-builder-bin": "npm:@julusian/[email protected]", | ||
"node-gyp-build": "github:julusian/node-gyp-build#cross-install-support", | ||
"osc/serialport": "^12.0.0", | ||
"react-select": "npm:@julusian/react-select@^5.8.1-3" | ||
"react-select": "npm:@julusian/react-select@^5.8.1-3", | ||
"app-builder-lib@npm:26.0.0-alpha.7": "patch:app-builder-lib@npm%3A26.0.0-alpha.7#~/.yarn/patches/app-builder-lib-npm-26.0.0-alpha.7-e1b3dca119.patch" | ||
} | ||
} |
Oops, something went wrong.