-
Notifications
You must be signed in to change notification settings - Fork 0
all commitall #1398
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
all commitall #1398
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -246,6 +246,9 @@ rtk-rewrite-sync: ## Sync rtk-rewrite.sh from upstream rtk repo. | |||||||||||||||||||||||||||||||||||||
| .PHONY: update | ||||||||||||||||||||||||||||||||||||||
| update: nix-update neovim-update gitalias-update llm-update overlays-update ## Update Nix flake, overlays, Neovim plugins, LLM configs, gitalias, and bun deps | ||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||
| .PHONY: update-lock | ||||||||||||||||||||||||||||||||||||||
| update-lock: nix-flake-update bun-update cargo-update ## Update lock files for Nix flake, bun, and Cargo. | ||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||
|
Comment on lines
+249
to
+251
|
||||||||||||||||||||||||||||||||||||||
| .PHONY: bun-update | ||||||||||||||||||||||||||||||||||||||
| bun-update: ## Update bun dependencies to latest and regenerate lock file. | ||||||||||||||||||||||||||||||||||||||
| @echo "📦 Updating bun dependencies..." | ||||||||||||||||||||||||||||||||||||||
|
|
@@ -254,6 +257,12 @@ bun-update: ## Update bun dependencies to latest and regenerate lock file. | |||||||||||||||||||||||||||||||||||||
| @bun install | ||||||||||||||||||||||||||||||||||||||
| @echo "✅ bun dependencies updated" | ||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||
| .PHONY: cargo-update | ||||||||||||||||||||||||||||||||||||||
| cargo-update: ## Update Rust dependencies to latest and regenerate lock file. | ||||||||||||||||||||||||||||||||||||||
| @echo "🦀 Updating Cargo dependencies..." | ||||||||||||||||||||||||||||||||||||||
| @cargo +nightly update --breaking -Z unstable-options | ||||||||||||||||||||||||||||||||||||||
|
Contributor
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. |
||||||||||||||||||||||||||||||||||||||
| @echo "✅ Cargo dependencies updated" | ||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||
|
Comment on lines
+260
to
+265
|
||||||||||||||||||||||||||||||||||||||
| .PHONY: cargo-update | |
| cargo-update: ## Update Rust dependencies to latest and regenerate lock file. | |
| @echo "🦀 Updating Cargo dependencies..." | |
| @cargo +nightly update --breaking -Z unstable-options | |
| @echo "✅ Cargo dependencies updated" | |
| .PHONY: cargo-update cargo-update-breaking | |
| cargo-update: ## Update Rust dependencies and regenerate lock file. | |
| @echo "🦀 Updating Cargo dependencies..." | |
| @command -v cargo >/dev/null 2>&1 || { echo "❌ cargo is required for 'make cargo-update'"; exit 1; } | |
| @cargo update | |
| @echo "✅ Cargo dependencies updated" | |
| cargo-update-breaking: ## Update Rust dependencies with semver-breaking upgrades (requires rustup nightly). | |
| @echo "🦀 Updating Cargo dependencies with breaking changes..." | |
| @command -v rustup >/dev/null 2>&1 || { echo "❌ rustup is required for 'make cargo-update-breaking'"; exit 1; } | |
| @command -v cargo >/dev/null 2>&1 || { echo "❌ cargo is required for 'make cargo-update-breaking'"; exit 1; } | |
| @cargo +nightly update --breaking -Z unstable-options | |
| @echo "✅ Cargo dependencies updated with breaking changes" |
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.
The
update-locktarget depends onnix-flake-update, which is not defined in the visible portions of the Makefile, while theupdatetarget (line 247) usesnix-update. This inconsistency may lead to failures ifnix-flake-updateis missing or was intended to benix-update.