-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: update the CLI generate command schematic to pass the HTTP meth…
…od (#9) * feat: update the CLI generate command schematic to pass the HTTP method * Merge branch 'main' of https://github.com/expressots/expressots-cli into ETS-237-generate-command-schematic-to-pass-the-http-method * fix: add entity schematic * fix: validate http method, add module opinionated * fix: update non-opinionated gen slash * fix: scaffold slash, binding scope add * fix: add http method specific template on scaffold * fix: add response type on res from express * fix: add template usecase, and single path module * fix: module scaffold based on modulepath * fix: standard message on scaffold resources * fix: non opinionated edge cases fixes * fix: update controller to module path non-op * fix: removing unnecessary consoles * fix: update version to rc-1 --------- Co-authored-by: Richard Zampieri <[email protected]>
- Loading branch information
1 parent
acb5d3f
commit 67059b6
Showing
21 changed files
with
577 additions
and
149 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 |
---|---|---|
|
@@ -34,3 +34,5 @@ package-lock.json | |
expressots.config.ts | ||
|
||
*.tgz | ||
|
||
*.container.ts |
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,4 +1,5 @@ | ||
{ | ||
"singleQuote": false, | ||
"trailingComma": "all", | ||
"tabWidth": 4 | ||
} |
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,5 +1,23 @@ | ||
{ | ||
"cSpell.ignoreWords": [ | ||
"Expresso" | ||
] | ||
], | ||
"workbench.colorCustomizations": { | ||
// "activityBar.foreground": "#38e715", | ||
// "activityBarBadge.background": "#248d0f", | ||
// "activityBarBadge.foreground": "#fcfcfc", | ||
// "sideBar.border": "#38e715", | ||
// "sideBarTitle.foreground": "#38e715", | ||
// "sideBarSectionHeader.border": "#38e715", | ||
// "editorGroupHeader.border": "#38e715", | ||
// "editorGroupHeader.tabsBorder": "#38e715", | ||
// "tab.border": "#38e715", | ||
// "tab.activeBorderTop": "#38e715", | ||
// "panel.border": "#38e715", | ||
// "statusBar.border": "#38e715", | ||
// "statusBar.foreground": "#38e715" | ||
}, | ||
"editor.rulers": [ | ||
120 | ||
], | ||
} |
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
Oops, something went wrong.