-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add CLI build with Bun and Commander (#12) * Add CLI build with Bun and Commander The build generates a CLI for running the Bun API. The config has been changed to include program argument parameters. In order to run the new `app` using custom directives (e.g port, hostname) a new function called `generateApp()` had to be created in order for the tests to be ran with the same app (previously `export default`). Closes: #7 * Fix build workflow * Skip default values check in config test
- Loading branch information
Showing
3 changed files
with
3 additions
and
2 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,4 +24,4 @@ jobs: | |
- uses: softprops/action-gh-release@v1 | ||
with: | ||
files: | | ||
substreams-clock-api | ||
substreams-clock-api |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,4 +35,4 @@ describe('Commander', () => { | |
verbose: DEFAULT_VERBOSE | ||
}); | ||
}); | ||
}); | ||
}); |
This file contains 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