forked from electron-userland/electron-builder
-
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: fix the main matcher patterns for !node_modules/@test/xxxx (elec…
…tron-userland#8547) fix electron-userland#8460 Reproducible demo ``` { "name": "TestApp", "productName": "Test App ßW", "description": "My Electron application description", "keywords": [], "main": "./main.js", "version": "1.0.0", "author": "beyondkmp", "scripts": { "start": "electron .", "dist": "electron-builder" }, "license": "MIT", "build": { "appId": "electron-blog-example", "files": [ "!node_modules/@electron/remote/*" ], "win": { "target": "nsis" } }, "devDependencies": { "electron": "32.1.0", "electron-builder": "25.1.6" }, "dependencies": { "tar": "7.4.3", "@electron/remote": "2.1.2" } } ``` --------- Co-authored-by: beyondkmp <[email protected]>
- Loading branch information
Showing
3 changed files
with
23 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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"app-builder-lib": patch | ||
--- | ||
|
||
fix the main matcher patterns for !node_modules/xxxx |
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