@vscode/vsce
Advanced tools
Comparing version 2.26.1-0 to 2.26.1-1
@@ -14,3 +14,7 @@ "use strict"; | ||
} | ||
return (translations[match[1]] ?? value); | ||
const translation = translations[match[1]]; | ||
if (translation === undefined) { | ||
throw new Error(`No translation found for ${value}`); | ||
} | ||
return translation; | ||
}; | ||
@@ -17,0 +21,0 @@ } |
{ | ||
"name": "@vscode/vsce", | ||
"version": "2.26.1-0", | ||
"version": "2.26.1-1", | ||
"description": "VS Code Extensions Manager", | ||
@@ -5,0 +5,0 @@ "repository": { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
160801
3254