-
Notifications
You must be signed in to change notification settings - Fork 3
feat: Add @dynamia-tools/cli — project scaffolding CLI #57
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
Merged
marioserrano09
merged 24 commits into
vue-support
from
copilot/add-cli-tool-implementation
Apr 19, 2026
Merged
Changes from all commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
be35352
Initial plan
Copilot 1249fcb
feat: Add @dynamia-tools/cli package with scaffold wizard, backend/fr…
Copilot 313d774
Merge pull request #58 from dynamiatools/vue-support
marioserrano09 f4a8ce7
chore: update tools.version to 26.4.0 and zk.version to 10.2.1-jakart…
marioserrano09 2bb057d
chore: upgrade Spring Boot to 4.0.5 and update Swagger and AWS depend…
marioserrano09 367395f
Merge pull request #59 from dynamiatools/upgrade-to-zk-10.2.1
marioserrano09 cb72185
Merge pull request #60 from dynamiatools/upgrade-to-spring-boot-4.0.5
marioserrano09 19a8088
chore: bump version to 26.4.0 across all packages and add version bum…
marioserrano09 4a2f0d7
chore: remove specific pnpm version from publish-npm.yml
marioserrano09 e859262
feat: add custom payment provider and extra fields to account payment…
marioserrano09 40a3f58
chore: bump version to 26.4.1 across all modules in pom.xml and packa…
marioserrano09 81cd365
refactor: simplify item retrieval and selection logic in ProviderPick…
marioserrano09 4cee738
feat: enhance ProviderPickerBox with detailed documentation and confi…
marioserrano09 7f4cdf7
chore: update version to 26.4.1 in README and dependency sections
marioserrano09 db8280b
refactor: rename item-related methods in ProviderPickerBox to improve…
marioserrano09 c6d59b8
refactor: reorder fields in AccountForm.yml for improved organization
marioserrano09 13315d2
Merge pull request #61 from dynamiatools/feature/improve-saas-payments
marioserrano09 d980ef4
Merge branch 'main' into copilot/add-cli-tool-implementation
marioserrano09 2cc95e4
chore: update dependencies and minimum version requirements to 26.4.1
marioserrano09 e4af264
feat: enhance CLI tool with template validation and improved error ha…
marioserrano09 d8ed4f4
feat: add empty ModuleProvider bean for improved module handling
marioserrano09 b572541
feat: normalize Spring Boot version for improved compatibility in pro…
marioserrano09 428d55c
feat: add support for Spring Boot version placeholder replacement in …
marioserrano09 cd0efac
feat: add Git initialization prompt for new project setup
marioserrano09 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,41 @@ | ||
| #!/usr/bin/env bash | ||
|
|
||
| set -e | ||
|
|
||
| echo "📦 Monorepo Version Bump (pnpm + Maven)" | ||
|
|
||
| # Ask for version | ||
| read -p "👉 Enter the new version (e.g. 26.4.0): " VERSION | ||
|
|
||
| # Basic validation | ||
| if [ -z "$VERSION" ]; then | ||
| echo "❌ Version cannot be empty" | ||
| exit 1 | ||
| fi | ||
|
|
||
| echo "🚀 Updating pnpm workspace packages to $VERSION..." | ||
|
|
||
| pnpm -r exec npm version "$VERSION" --no-git-tag-version | ||
|
|
||
| echo "🔄 Syncing internal dependencies (optional)..." | ||
|
|
||
| if command -v syncpack &> /dev/null | ||
| then | ||
| pnpm -r exec syncpack set-version "$VERSION" | ||
| else | ||
| echo "⚠️ syncpack not found, skipping dependency sync" | ||
| fi | ||
|
|
||
| # --- Maven part --- | ||
| if [ -f "pom.xml" ]; then | ||
| echo "☕ Updating Maven project version to $VERSION..." | ||
|
|
||
| mvn versions:set -DnewVersion="$VERSION" -DgenerateBackupPoms=false | ||
|
|
||
| echo "🔧 Ensuring child modules are updated..." | ||
| mvn versions:update-child-modules | ||
| else | ||
| echo "⚠️ No pom.xml found at root, skipping Maven step" | ||
| fi | ||
|
|
||
| echo "✅ Done. Everything is now at version $VERSION" |
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
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -47,7 +47,7 @@ | |||||
| <timestamp>${maven.build.timestamp}</timestamp> | ||||||
| <maven.build.timestamp.format>yyyyMMdd</maven.build.timestamp.format> | ||||||
|
|
||||||
| <tools.version>26.3.2</tools.version> | ||||||
| <tools.version>26.4.0</tools.version> | ||||||
|
||||||
| <tools.version>26.4.0</tools.version> | |
| <tools.version>26.4.1</tools.version> |
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
Oops, something went wrong.
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.
CalVer explanation is internally inconsistent: it states 26.4.1 is the first February 2026 release and calls it “Release 0”. With
YY.MM.MINOR, the first release for a month should typically be.0; either adjust the examples/text or update the version referenced here.