Revert "chore: Add documentation for StageList and ModuleList"
This reverts commit ddd1864c3f.
This commit is contained in:
parent
706f58f294
commit
63ee7ccd7a
2 changed files with 4 additions and 13 deletions
8
.gitignore
vendored
8
.gitignore
vendored
|
|
@ -1,4 +1,4 @@
|
|||
tsp-output/
|
||||
node_modules/
|
||||
dist/
|
||||
src-tsp/modules/
|
||||
tsp-output/*
|
||||
node_modules/*
|
||||
dist/*
|
||||
src-tsp/modules/*
|
||||
|
|
@ -58,10 +58,6 @@ model Recipe {
|
|||
|
||||
@jsonSchema("stage-list-v1.json")
|
||||
model StageList {
|
||||
/**
|
||||
* A list of [stages](https://blue-build.org/reference/stages/) that are executed before the build of the final image.
|
||||
* This is useful for compiling programs from source without polluting the final bootable image.
|
||||
*/
|
||||
stages: Array<Stage | ImportedModule>;
|
||||
}
|
||||
|
||||
|
|
@ -87,11 +83,6 @@ model Stage {
|
|||
|
||||
@jsonSchema("module-list-v1.json")
|
||||
model ModuleList {
|
||||
/**
|
||||
* A list of [modules](https://blue-build.org/reference/module/) that is executed in order. Multiple of the same module can be included.
|
||||
*
|
||||
* Each item in this list should have at least a `type:` or be specified to be included from an external file in the `recipes/` directory with `from-file:`.
|
||||
*/
|
||||
modules: Array<ModuleType | ImportedModule>;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue