-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #886 from pmcelhaney/821-add-cli-option-to-skip-ge…
…nerating-types
- Loading branch information
Showing
13 changed files
with
324 additions
and
95 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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"counterfact": minor | ||
--- | ||
|
||
Add command line options for granular control of the different parts of CF |
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
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
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
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
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,10 +1,20 @@ | ||
export interface Config { | ||
basePath: string; | ||
generate: { | ||
routes: boolean; | ||
types: boolean; | ||
}; | ||
openApiPath: string; | ||
port: number; | ||
proxyEnabled: boolean; | ||
proxyUrl: string; | ||
routePrefix: string; | ||
startRepl: boolean; | ||
startServer: boolean; | ||
watch: { | ||
routes: boolean; | ||
types: boolean; | ||
}; | ||
} | ||
|
||
export const DUMMY_EXPORT_FOR_TEST_COVERAGE = 1; |
Oops, something went wrong.