particle-os-cli/test-files/schema/modules/justfiles-latest.json
2025-01-31 22:29:31 -05:00

33 lines
No EOL
1.1 KiB
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "/modules/justfiles.json",
"type": "object",
"properties": {
"type": {
"type": "string",
"const": "justfiles",
"description": "The justfiles module makes it easy to include just recipes from multiple files in Universal Blue -based images.\nhttps://blue-build.org/reference/modules/justfiles/"
},
"no-cache": {
"type": "boolean",
"default": false,
"description": "Whether to disabling caching for this layer.\nhttps://blue-build.org/reference/module/#no-cache-optional"
},
"validate": {
"type": "boolean",
"default": false,
"description": "Whether to validate the syntax of the justfiles against `just --fmt`. (warning: can be very unforgiving)"
},
"include": {
"type": "array",
"items": {
"type": "string"
},
"description": "List of files or subfolders to include into this image. If omitted, all justfiles will be included."
}
},
"required": [
"type"
],
"additionalProperties": false
}