mirror of
https://github.com/ckaczor/vscode-gitlens.git
synced 2026-02-16 18:48:45 -05:00
Fixes #7 - missing lodash dependency
This commit is contained in:
1
typings/index.d.ts
vendored
1
typings/index.d.ts
vendored
@@ -1,2 +1 @@
|
||||
/// <reference path="globals/tmp/index.d.ts" />
|
||||
/// <reference path="modules/lodash/index.d.ts" />
|
||||
|
||||
18545
typings/modules/lodash/index.d.ts
vendored
18545
typings/modules/lodash/index.d.ts
vendored
File diff suppressed because it is too large
Load Diff
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"resolution": "main",
|
||||
"tree": {
|
||||
"src": "https://raw.githubusercontent.com/types/npm-lodash/9b83559bbd3454f0cd9e4020c920e36eee80d5a3/typings.json",
|
||||
"raw": "registry:npm/lodash#4.0.0+20160723033700",
|
||||
"main": "index.d.ts",
|
||||
"version": "4.0.0",
|
||||
"name": "lodash",
|
||||
"type": "typings"
|
||||
}
|
||||
}
|
||||
8
typings/spawn-rx.d.ts
vendored
8
typings/spawn-rx.d.ts
vendored
@@ -4,10 +4,10 @@ declare module "spawn-rx" {
|
||||
|
||||
namespace spawnrx {
|
||||
function findActualExecutable(exe: string, args: Array<string>): { cmd: string, args: Array<string> };
|
||||
function spawnDetached(exe: string, params: Array<string>, opts: Object): Observable<string>;
|
||||
function spawn(exe: string, params: Array<string>, opts: Object): Observable<string>;
|
||||
function spawnDetachedPromise(exe: string, params: Array<string>, opts: Object): Promise<string>;
|
||||
function spawnPromise(exe: string, params: Array<string>, opts: Object): Promise<string>;
|
||||
function spawnDetached(exe: string, params: Array<string>, opts: Object|undefined): Observable<string>;
|
||||
function spawn(exe: string, params: Array<string>, opts: Object|undefined): Observable<string>;
|
||||
function spawnDetachedPromise(exe: string, params: Array<string>, opts: Object|undefined): Promise<string>;
|
||||
function spawnPromise(exe: string, params: Array<string>, opts: Object|undefined): Promise<string>;
|
||||
}
|
||||
export = spawnrx;
|
||||
}
|
||||
Reference in New Issue
Block a user