diff --git a/.gitignore b/.gitignore index 3c815ab..f193069 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,4 @@ -tsp-output/ -node_modules/ -dist/ -src-tsp/modules/ +tsp-output/* +node_modules/* +dist/* +src-tsp/modules/* \ No newline at end of file diff --git a/src-tsp/main.tsp b/src-tsp/main.tsp index 9fb8a2e..df8b981 100644 --- a/src-tsp/main.tsp +++ b/src-tsp/main.tsp @@ -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; } @@ -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; }