Fix different error message in source and package.nls for npm package (#37096)
* Fix package.nls.json for npm Error message was different in main.ts. * Fix language string key in npm/src/main.tspull/36099/merge
parent
cabf4b2997
commit
a05e3d996a
|
@ -1,5 +1,5 @@
|
||||||
{
|
{
|
||||||
"config.npm.autoDetect": "Controls whether auto detection of npm scripts is on or off. Default is on.",
|
"config.npm.autoDetect": "Controls whether auto detection of npm scripts is on or off. Default is on.",
|
||||||
"config.npm.runSilent": "Run npm commands with the `--silent` option",
|
"config.npm.runSilent": "Run npm commands with the `--silent` option",
|
||||||
"npm.parseError": "Npm task detection could not parse the {0}"
|
"npm.parseError": "Npm task detection: failed to parse the file {0}"
|
||||||
}
|
}
|
||||||
|
|
|
@ -143,7 +143,7 @@ async function provideNpmScriptsForFolder(folder: vscode.WorkspaceFolder): Promi
|
||||||
// result.push(createTask('install', 'install', rootPath, folder, []));
|
// result.push(createTask('install', 'install', rootPath, folder, []));
|
||||||
return result;
|
return result;
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
let localizedParseError = localize('npm.parseerror', 'Npm task detection: failed to parse the file {0}', packageJson);
|
let localizedParseError = localize('npm.parseError', 'Npm task detection: failed to parse the file {0}', packageJson);
|
||||||
throw new Error(localizedParseError);
|
throw new Error(localizedParseError);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -168,4 +168,4 @@ function createTask(script: string, cmd: string, rootPath: string, folder: vscod
|
||||||
};
|
};
|
||||||
let taskName = getTaskName(script);
|
let taskName = getTaskName(script);
|
||||||
return new vscode.Task(kind, folder, taskName, 'npm', new vscode.ShellExecution(getCommandLine(folder, cmd), { cwd: rootPath }), matcher);
|
return new vscode.Task(kind, folder, taskName, 'npm', new vscode.ShellExecution(getCommandLine(folder, cmd), { cwd: rootPath }), matcher);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue