Merge pull request #4 from blue-build/create-import-schema

chore: Create import-v1 and module-custom-v1 schema
This commit is contained in:
xyny 2025-01-30 14:41:45 +02:00 committed by GitHub
commit ff545861a5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -127,6 +127,7 @@ model ModuleDefaults {
`no-cache`?: boolean = false;
}
@jsonSchema("module-custom-v1.json")
model CustomModule {
/** This is not a built-in module. */
type: string;
@ -142,6 +143,7 @@ model CustomModule {
}
@extension("additionalProperties", false)
@jsonSchema("import-v1.json")
model ImportedModule {
/** The path to another file containing module configuration to import here.
* https://blue-build.org/how-to/multiple-files/