@eclipse-che/che-devworkspace-generator 7.87.0 → 7.88.0-next-a2e5c63

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.
@@ -14,6 +14,7 @@ import * as devfileSchemaV210 from './2.1.0/devfile.json';
14
14
  import * as devfileSchemaV220 from './2.2.0/devfile.json';
15
15
  import * as devfileSchemaV221 from './2.2.1/devfile.json';
16
16
  import * as devfileSchemaV222 from './2.2.2/devfile.json';
17
+ import * as devfileSchemaV230 from './2.3.0/devfile.json';
17
18
  import * as Validator from 'jsonschema';
18
19
  import { DevfileSchemaVersion } from '../api/devfile-context';
19
20
 
@@ -31,6 +32,8 @@ export class DevfileSchemaValidator {
31
32
  return devfileSchemaV221;
32
33
  case DevfileSchemaVersion.V222:
33
34
  return devfileSchemaV222;
35
+ case DevfileSchemaVersion.V230:
36
+ return devfileSchemaV230;
34
37
  default:
35
38
  throw new Error(`Dev Workspace generator tool doesn't support devfile version: ${version}`);
36
39
  }