-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: add debug log to investigate "Cannot build app with 3.6.2+" #360
- Loading branch information
Showing
6 changed files
with
76 additions
and
3 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
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
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
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,58 @@ | ||
// Generated by typings | ||
// Source: https://raw.githubusercontent.com/typed-typings/npm-ms/f40c81c7f45bc35e970de851117c29fc959220b2/index.d.ts | ||
declare module '~debug~ms/index' { | ||
function ms (value: string): number; | ||
function ms (value: number, options?: ms.Options): string; | ||
|
||
module ms { | ||
export interface Options { | ||
long: boolean; | ||
} | ||
} | ||
|
||
export = ms; | ||
} | ||
declare module '~debug~ms' { | ||
import main = require('~debug~ms/index'); | ||
export = main; | ||
} | ||
|
||
// Generated by typings | ||
// Source: https://raw.githubusercontent.com/typed-typings/npm-debug/0e398cb21de268744dd048a11461be5c13230bad/node.d.ts | ||
declare module '~debug/node' { | ||
import ms = require('~debug~ms'); | ||
|
||
function debug (namespace: string): debug.Debugger; | ||
|
||
module debug { | ||
export interface Debugger { | ||
(message: any, ...args: any[]): void; | ||
enabled: boolean; | ||
namespace: string; | ||
} | ||
|
||
export function coerce (value: any): any; | ||
export function disable (): void; | ||
export function enable (namespaces: string): void; | ||
export function enabled (namespace: string): boolean; | ||
export var humanize: typeof ms; | ||
|
||
// Node implementation exports. | ||
export var log: Function; | ||
export function formatArgs (...args: any[]): any; | ||
export function save (namespaces?: string): void; | ||
export function load (): string | void; | ||
export function useColors (): boolean; | ||
export var colors: number[]; | ||
} | ||
|
||
export = debug; | ||
} | ||
declare module 'debug/node' { | ||
import main = require('~debug/node'); | ||
export = main; | ||
} | ||
declare module 'debug' { | ||
import main = require('~debug/node'); | ||
export = main; | ||
} |