update electron to v43
This commit is contained in:
parent
68ac0beedf
commit
fb6c8b6ee9
5385 changed files with 513060 additions and 123058 deletions
18
electron/node_modules/app-builder-lib/out/targets/nsis/nsisValidation.d.ts
generated
vendored
Normal file
18
electron/node_modules/app-builder-lib/out/targets/nsis/nsisValidation.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
import type { Defines } from "./Defines";
|
||||
/**
|
||||
* Validates makensis stdout/stderr after a zero-exit run.
|
||||
*
|
||||
* NSIS can emit "Error:" lines on stderr and still exit 0 (e.g. disk-full
|
||||
* scenarios where the OS silently drops writes). Also checks the
|
||||
* "Install data: <written> / <expected> bytes" progress line for truncation.
|
||||
*/
|
||||
export declare function checkMakensisOutput(stdout: string, stderr: string): void;
|
||||
/**
|
||||
* Verifies the generated installer is at least as large as the sum of the
|
||||
* embedded archive(s). An installer smaller than its payload is definitively
|
||||
* truncated regardless of the makensis exit code.
|
||||
*
|
||||
* Only runs when APP_64/APP_32/APP_ARM64 defines are present (i.e. normal,
|
||||
* non-portable installers). Skipped for the intermediate uninstaller build.
|
||||
*/
|
||||
export declare function verifyInstallerSize(outFile: string, defines: Defines): Promise<void>;
|
||||
Loading…
Add table
Add a link
Reference in a new issue