Skip to content

Commit 0bc9d81

Browse files
committed
SysInfo related improvements from common
1 parent 4354559 commit 0bc9d81

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

lib/definitions/osenv.d.ts

Lines changed: 0 additions & 4 deletions
This file was deleted.

package.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@
3636
"iconv-lite": "0.4.4",
3737
"ios-sim-portable": "1.0.4",
3838
"lockfile": "1.0.0",
39-
"lodash": "3.5.0",
40-
"log4js": "0.6.9",
39+
"lodash": "3.6.0",
40+
"log4js": "0.6.22",
4141
"marked": "0.3.3",
4242
"marked-terminal": "1.2.0",
4343
"mkdirp": "0.3.5",
@@ -59,7 +59,6 @@
5959
"shelljs": "0.3.0",
6060
"tabtab": "https://github.com/Icenium/node-tabtab/tarball/master",
6161
"temp": "0.8.1",
62-
"unzip": "0.1.11",
6362
"winreg": "0.0.12",
6463
"xcode": "https://github.com/NativeScript/node-xcode/archive/NativeScript-0.9.tar.gz",
6564
"xmlhttprequest": "https://github.com/telerik/node-XMLHttpRequest/tarball/master",

test/stubs.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import path = require("path");
77

88
export class LoggerStub implements ILogger {
99
setLevel(level: string): void {}
10+
getLevel(): string { return undefined; }
1011
fatal(...args: string[]): void {}
1112
error(...args: string[]): void {}
1213
warn(...args: string[]): void {}
@@ -146,6 +147,10 @@ export class FileSystemStub implements IFileSystem {
146147
return [];
147148
}
148149

150+
tryExecuteFileOperation(path: string, operation: () => IFuture<any>, enoentErrorMessage?: string): IFuture<void> {
151+
return undefined;
152+
}
153+
149154
isRelativePath(path: string): boolean {
150155
return false;
151156
}

0 commit comments

Comments
 (0)