Conversation
Vercel 固有の名前を汎用的な env-sync に変更。後方互換なし。 - バイナリ名: vercel-env-sync → env-sync - 設定ファイル: vercel-env.yaml → env-sync.yaml - go.mod module: github.com/ptyhard/vercel-env-sync → github.com/ptyhard/env-sync - .gitignore: /vercel-env-sync → /env-sync - .goreleaser.yaml: project_name / binary / release / homebrew_casks を更新 - README.md: コマンド例・ファイル名・URL をすべて新名称へ更新 - main.go: usage 文字列・コメント・デフォルト値を更新 - main_test.go: テスト期待値を更新 Note: GitHub リポジトリ名のリネーム (ptyhard/vercel-env-sync → ptyhard/env-sync) は手動操作が必要。 Co-Authored-By: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01HUt4mQe7JfqLu2QPw6iYHL
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.
タスク
Vercel 以外(GitHub など複数プロバイダ)に対応していくため、Vercel 固有の名前
vercel-env-syncを汎用的なenv-syncにリネームする。後方互換は不要。変更内容
vercel-env-sync→env-syncvercel-env.yaml→env-sync.yamlgithub.com/ptyhard/vercel-env-sync→github.com/ptyhard/env-sync.gitignore:/vercel-env-sync→/env-sync.goreleaser.yaml: project_name / binary / release / homebrew_casks を更新README.md: コマンド例・ファイル名・インストール URL をすべて新名称へ更新main.go: usage 文字列・コメント・デフォルト値(--defのデフォルト)を更新main_test.go: テスト期待値を更新完了条件
grep -rn "vercel-env-sync" . --exclude-dir=.git→ 0件grep -rn "vercel-env\.yaml\|vercel-env\b" . --exclude-dir=.git→ 0件(.gitファイルのみ)head -1 go.mod→module github.com/ptyhard/env-syncenv-sync.yaml存在・vercel-env.yaml削除済みgo build -o env-sync . && echo OK成功go test ./...)動作確認
注意事項(手動作業)
GitHub リポジトリ名のリネーム(
ptyhard/vercel-env-sync→ptyhard/env-sync)は手動操作が必要です。マージ後に以下を実行してください: