CLI/API: add a config-driven generate command - #211
Open
sussdorff wants to merge 3 commits into
Open
Conversation
The CLI advertised a generate command that did not exist. Add `atomic-codegen generate --config` so APIBuilder pipelines can be described as JSON instead of a hand-written script, and report --version from package.json.
The previous dist/index.js filename test missed dist/cli/index.js, so TypeScript generation from the bundled CLI could not find profile-helpers.ts. Walk up from the calling module instead.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
generatecommand, which was documented in the CLI header but did not exist.APIBuilderpipelines from a JSON config instead of a hand-written script.dist/cli/index.jscan loadprofile-helpers.ts.--versionfrompackage.jsoninstead of a hardcoded0.1.0.The CLI currently only emits TypeSchema NDJSON:
After this change, code generation is a config file:
{ "version": 1, "builders": [ { "name": "core", "fromPackages": [{ "name": "hl7.fhir.r4.core", "version": "4.0.1" }], "typescript": {}, "outputTo": "./out/core", "cleanOutput": true } ] }