@vscode/vsce 2.21.1 → 2.22.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/out/package.js +0 -1
- package/out/validation.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -72,7 +72,7 @@ Or you can also set them in the `package.json`, so that you avoid having to rety
|
|
|
72
72
|
// package.json
|
|
73
73
|
{
|
|
74
74
|
"vsce": {
|
|
75
|
-
"baseImagesUrl": "https://my.custom/base/images/url"
|
|
75
|
+
"baseImagesUrl": "https://my.custom/base/images/url",
|
|
76
76
|
"dependencies": true,
|
|
77
77
|
"yarn": false
|
|
78
78
|
}
|
package/out/package.js
CHANGED
package/out/validation.js
CHANGED
|
@@ -112,7 +112,7 @@ function validateVSCodeTypesCompatibility(engineVersion, typeVersion) {
|
|
|
112
112
|
return 0;
|
|
113
113
|
}
|
|
114
114
|
});
|
|
115
|
-
const error = new Error(`@types/vscode ${typeVersion} greater than engines.vscode ${engineVersion}.
|
|
115
|
+
const error = new Error(`@types/vscode ${typeVersion} greater than engines.vscode ${engineVersion}. Either upgrade engines.vscode or use an older @types/vscode version`);
|
|
116
116
|
if (typeMajor > engineMajor) {
|
|
117
117
|
throw error;
|
|
118
118
|
}
|