Open
Conversation
PR Summary
|
Collaborator
|
Hello. You need to create a changeset file and commit it to let this change be approved. Could you run ERROR: The following projects have been changed and require change descriptions,
but change descriptions were not detected for them:
- @boostercloud/framework-core
To resolve this error, run "rush change". This will generate change description
files that must be committed to source control. |
Author
|
@davidverdu Now it's fine sir, I have generated the changeset and its seems to fine. |
Collaborator
|
/integration sha=6126df160824fe5d0b7bfebb7a66205c51989f4b |
Contributor
|
⌛ Integration tests are running... Check their status here 👈 |
Contributor
|
✅ Integration tests have finished successfully! |
Author
|
@davidverdu sir , Can u check it out as if it's ok to merge. |
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Description
This PR adds automatic generation of a
.vscode/launch.jsonfile when creating new Booster projects. This provides developers with a pre-configured VS Code debug setup for running unit tests, improving the development experience.Changes
launch-json.tstemplate - Created a new template file with VS Code launch configuration for unit testsproject-initializer.tsto:.vscodedirectory during project initialization.vscode/launch.jsonfile with the template content.vscodedirectory creation ingenerateRootDirectory()function.vscode/launch.jsonfile generation ingenerateConfigFiles()functionChecks
Additional information
This enhancement improves the developer experience by automatically providing a VS Code debug configuration when creating new Booster projects. The generated
.vscode/launch.jsonfile includes:rushx test${workspaceFolder})The implementation follows the existing codebase patterns and maintains backward compatibility. All existing functionality continues to work as expected, and the new feature is thoroughly tested.