@o3r/core
Version:
Core of the Otter Framework
21 lines (20 loc) • 527 B
JSON
{
"$schema": "http://json-schema.org/draft-07/schema",
"type": "object",
"$id": "LibBuilderSchema",
"title": "Library builder",
"description": "Perform a library build",
"properties": {
"target": {
"type": "string",
"description": "The target build to launch."
},
"skipJasmineFixtureWorkaround": {
"type": "boolean",
"description": "Skip the workaround for the Jasmine fixture issue.",
"default": false
}
},
"additionalProperties": true,
"required": ["target"]
}