coder-config 0.45.8 → 0.45.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/constants.js +1 -1
- package/lib/workstreams.js +2 -0
- package/package.json +1 -1
package/lib/constants.js
CHANGED
package/lib/workstreams.js
CHANGED
|
@@ -1198,6 +1198,8 @@ _coder_workstream_cd() {
|
|
|
1198
1198
|
}
|
|
1199
1199
|
# Only alias cd in interactive shells (avoid breaking scripts/Claude Code)
|
|
1200
1200
|
[[ $- == *i* ]] && alias cd='_coder_workstream_cd'
|
|
1201
|
+
# Pass through cd completions to the wrapper function (zsh only)
|
|
1202
|
+
[[ -n "$ZSH_VERSION" ]] && compdef _cd _coder_workstream_cd
|
|
1201
1203
|
${endMarker}
|
|
1202
1204
|
`;
|
|
1203
1205
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "coder-config",
|
|
3
|
-
"version": "0.45.
|
|
3
|
+
"version": "0.45.9",
|
|
4
4
|
"description": "Configuration manager for AI coding tools - Claude Code, Gemini CLI, Codex CLI, Antigravity. Manage MCPs, rules, permissions, memory, and workstreams.",
|
|
5
5
|
"author": "regression.io",
|
|
6
6
|
"main": "config-loader.js",
|