Skip to content

Commit 18539c6

Browse files
committed
One more fix
1 parent dcf5832 commit 18539c6

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

extensions/npm/src/npmScriptLens.ts

+3-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ import {
1212
languages,
1313
TextDocument,
1414
Uri,
15-
workspace
15+
workspace,
16+
l10n
1617
} from 'vscode';
1718
import { findPreferredPM } from './preferred-pm';
1819
import { readScripts } from './readScripts';
@@ -69,7 +70,7 @@ export class NpmScriptLensProvider implements CodeLensProvider, Disposable {
6970
return [];
7071
}
7172

72-
const title = '$(debug-start) ' + vscode.l10n.t("Debug");
73+
const title = '$(debug-start) ' + l10n.t("Debug");
7374
const cwd = path.dirname(document.uri.fsPath);
7475
if (this.lensLocation === 'top') {
7576
return [

0 commit comments

Comments
 (0)