Revert "chore: Add documentation for StageList and ModuleList"

This reverts commit ddd1864c3f.
This commit is contained in:
Gerald Pinder 2024-10-13 21:08:50 -04:00
parent 706f58f294
commit 63ee7ccd7a
2 changed files with 4 additions and 13 deletions

8
.gitignore vendored
View file

@ -1,4 +1,4 @@
tsp-output/
node_modules/
dist/
src-tsp/modules/
tsp-output/*
node_modules/*
dist/*
src-tsp/modules/*

View file

@ -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>;
}