Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions res/schemas/beet_pipeline.json
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,10 @@
"const": "beet.contrib.lantern_load",
"description": "Adds Lantern Load runtime dependencies"
},
{
"const": "beet.contrib.mcbuild",
"description": "Builds a MC-Build project"
},
{
"const": "beet.contrib.minify_function",
"description": "Minifies function files"
Expand Down Expand Up @@ -206,6 +210,10 @@
"description": "lantern_load plugin settings",
"$ref": "contrib/lantern_load.json"
},
"mcbuild": {
"description": "mcbuild plugin settings",
"$ref": "contrib/mcbuild.json"
},
"render": {
"description": "render plugin settings",
"$ref": "contrib/render.json"
Expand Down
14 changes: 14 additions & 0 deletions res/schemas/contrib/mcbuild.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"source": {
"type": "string",
"description": "The source directory of the project. Defaults to './mcbuild'"
},
"force_rebuild": {
"type": "boolean",
"description": "Force the plugin to re-run MC-Build when beet updates the project, even if the source has not been changed."
}
}
}