@lvce-editor/extension-detail-view 7.23.0 → 7.23.1

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.
@@ -1306,7 +1306,8 @@ const getJsonValidationInfos = async (extensionUri, validations) => {
1306
1306
  });
1307
1307
  } else if (schemaLinkUrl) {
1308
1308
  // TODO maybe better use filesystem.exists
1309
- if (await existsJson(schemaLinkUrl)) {
1309
+ const isValid = schema.startsWith('https://') || (await existsJson(schemaLinkUrl));
1310
+ if (isValid) {
1310
1311
  validationInfos.push({
1311
1312
  errorMessage: '',
1312
1313
  fileMatch,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lvce-editor/extension-detail-view",
3
- "version": "7.23.0",
3
+ "version": "7.23.1",
4
4
  "description": "Extension Detail View Worker",
5
5
  "repository": {
6
6
  "type": "git",