-
Notifications
You must be signed in to change notification settings - Fork 1
AWS extension fix #114
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
AWS extension fix #114
Changes from all commits
2a01ebb
10f99e6
77f0406
dac4428
f4f434a
5d09617
0ee2ce5
361cdf5
043bbc2
d009c10
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -17,7 +17,7 @@ def hook(self, context: dict[Any, Any]) -> dict[Any, Any]: | |
| context["copier_version"] = "9.11.0" | ||
| context["copier_template_extensions_version"] = "0.3.3" | ||
| ####### | ||
| context["pnpm_version"] = "10.23.0" | ||
| context["pnpm_version"] = "10.24.0" | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🧩 Analysis chain🌐 Web query:
💡 Result: As of December 1, 2025:
Sources: Version 10.24.0 appears to be ahead of the latest stable pnpm release. As of December 2025, the latest stable version is 10.22.0 (released November 12, 2025). Verify that 10.24.0 is a valid, available release or use the correct latest stable version (10.22.0). 🤖 Prompt for AI Agents |
||
| # These are duplicated in the pyproject.toml of this repository | ||
| context["pyright_version"] = "1.1.407" | ||
| context["pytest_version"] = "9.0.1" | ||
|
|
||
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.
Line 31 is redundant and potentially problematic.
If line 30 succeeds, the directory
"./$repoName"no longer exists, making the glob"./$repoName/*.md"on line 31 meaningless. Withset -eenabled and depending on shell behavior, the non-matching glob could cause an error.Remove the redundant line:
sudo rm -rf "./$repoName" || true -sudo rm -rf "./$repoName/*.md"📝 Committable suggestion
🤖 Prompt for AI Agents