Skip to content

Commit 11dd0ec

Browse files
committed
typings/lodash.d.ts: remove ancient copy of lodash.d.ts
Change-Id: I149d07ae251186898861089b66bee9ec5a57c7a7
1 parent b2f06cc commit 11dd0ec

File tree

4 files changed

+10
-13770
lines changed

4 files changed

+10
-13770
lines changed

package-lock.json

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
"@types/deep-equal": "^1.0.1",
7070
"@types/fs-extra": "^8.1.0",
7171
"@types/glob": "^7.1.1",
72-
"@types/lodash": "^4.14.170",
72+
"@types/lodash": "^4.14.178",
7373
"@types/mocha": "^7.0.2",
7474
"@types/node": "^13.11.1",
7575
"@types/semver": "^7.1.0",

src/goImpl.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ import { dirname } from 'path';
1212
import { toolExecutionEnvironment } from './goEnv';
1313
import { promptForMissingTool } from './goInstallTools';
1414
import { getBinPath } from './util';
15-
import * as lodash from 'lodash';
1615
import vscode = require('vscode');
16+
import { debounce } from 'lodash';
1717

1818
class InterfaceItem implements vscode.QuickPickItem {
1919
public label: string;
@@ -58,7 +58,7 @@ export function implCursor() {
5858
quickPick.busy = false;
5959
};
6060

61-
quickPick.onDidChangeValue(lodash.debounce(search, 250));
61+
quickPick.onDidChangeValue(debounce(search, 250));
6262

6363
quickPick.onDidChangeSelection((selections: readonly vscode.QuickPickItem[]) => {
6464
if (typeof selections === 'undefined') {

0 commit comments

Comments
 (0)