This file contains hidden or 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
| build --linux --x64 | |
| • electron-builder version=20.10.0 | |
| • loaded configuration file=package.json ("build" field) | |
| • writing effective config file=dist\electron-builder-effective-config.yaml | |
| • no native production dependencies | |
| • packaging platform=linux arch=x64 electron=2.0.0-beta.7 appOutDir=dist\linux-unpacked | |
| • scheduling remote build target=appImage arch=x64 | |
| • building target=zip arch=x64 file=dist\audionodes-0.2.0.zip | |
| TypeError: Cannot match against 'undefined' or 'null'. | |
| at Object.<anonymous> (D:\VSTS Build\externals\npm\node_modules\electron-builder\node_modules\electron-builder-lib\src\remoteBuilder\RemoteBuildManager.ts:31:5) |
This file contains hidden or 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
| The system is: Windows - 10.0.15063 - AMD64 | |
| Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. | |
| Compiler: | |
| Build flags: | |
| Id flags: | |
| The output was: | |
| 0 | |
| Microsoft (R) Build Engine version 14.0.25420.1 | |
| Copyright (C) Microsoft Corporation. All rights reserved. |
This file contains hidden or 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
| export declare interface RuntimeAssert | |
| { | |
| any?: (value: any) => { | |
| asNumber: () => number, | |
| asArrayOfNumber: () => number[], | |
| asString: () => string, | |
| asArrayOfString: () => string[], | |
| asBoolean: () => boolean, | |
| asArrayOfBoolean: () => boolean[], | |
| as: <T>(ctor: new (...args: any[]) => T) => T, |