-
Notifications
You must be signed in to change notification settings - Fork 42
feat(cli): add git repository support for custom init templates #820
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
rohang9000
wants to merge
40
commits into
main
Choose a base branch
from
feat/git-repository-support-for-custom-templates
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
40 commits
Select commit
Hold shift + click to select a range
87d361d
feat: add local template support with --from-path option
rohang9000 75602da
chore: fix code style and functionality based on code review feedback
rohang9000 6a487e3
chore: cleaned up some extraneous comments
rohang9000 dd5139e
chore: modified error handling and fixed flag conflicts with yargs
rohang9000 54e20f1
fix: correct JSDoc @default comments to show actual values
rohang9000 8c4058e
chore: self mutation
invalid-email-address 86a8d81
chore: fixed code clarity and documentation based on CR feedback
rohang9000 c337e83
chore: gate --from-path functionality with unstable flag
rohang9000 8ba0fa9
chore: correct JSDoc syntax in init.ts
rohang9000 058e6cf
chore: self mutation
invalid-email-address 33a0ee0
fix: remove auto-detection message for local templates
rohang9000 0f25a88
chore: revised local template support to also allow multi-template re…
rohang9000 31423ad
chore: self mutation
invalid-email-address 4bf690c
chore: update code to support multi-template local repository
rohang9000 3d55b34
chore: seperate test data from test code with fixtures
rohang9000 34b313a
chore: seperated test data from test code and resolved other issues b…
rohang9000 1b87c79
chore: add validation for templatePath requiring fromPath at function…
rohang9000 7ce094d
chore: self mutation
invalid-email-address b4587fa
chore: refactored check function with implies for template-path valid…
rohang9000 4660864
chore: self mutation
invalid-email-address 2c5bca3
chore: update test file to remove incorrect test and add test to veri…
rohang9000 f2e5b03
chore: self mutation
invalid-email-address 5f447d9
chore: remove unused check function code and clean up old validation …
rohang9000 fcda0b4
chore: self mutation
invalid-email-address 7578eb3
removing "requires --from-path" description from cli-config.ts
rohang9000 5b132b9
chore: add additional test coverage for misc.
rohang9000 23dec99
chore: update test for unstable flag
rohang9000 39041ec
chore: update to unstable flag test
rohang9000 e26f524
chore: merge conflict
rohang9000 019f38b
chore: self mutation
invalid-email-address 569128c
chore: updated default cdk init behavior without template type or lan…
rohang9000 aeef412
chore: self mutation
invalid-email-address b7d8408
chore: add test for cdk init --language=[language]
rohang9000 e00e12d
modified test for cdk init --language=[language]
rohang9000 2d54fe8
chore: update test for cdk init --language=[language]
rohang9000 82c4734
Merge remote-tracking branch 'origin/main' into feat/git-repository-s…
rohang9000 e49fe62
WIP: git repository template support - save progress before VSCode re…
rohang9000 c02abcb
feat(cli): add support for pulling custom templates from git reposito…
rohang9000 5437650
chore: add CLI-level validation for template-path parameter
rohang9000 3c79410
chore: self mutation
invalid-email-address File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
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
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
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
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
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
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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should be replaced by a check that ensures that
from-path
orfrom-git-url
was also used.