@simonyea/holysheep-cli 1.7.80 → 1.7.81

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@simonyea/holysheep-cli",
3
- "version": "1.7.80",
3
+ "version": "1.7.81",
4
4
  "description": "Claude Code/Cursor/Cline API relay for China — ¥1=$1, WeChat/Alipay payment, no credit card, no VPN. One command setup for all AI coding tools.",
5
5
  "keywords": [
6
6
  "openai-china",
@@ -227,6 +227,12 @@ function removeEnvFromShell(extraKeys = []) {
227
227
  'HOLYSHEEP_API_KEY',
228
228
  ...extraKeys,
229
229
  ]
230
+
231
+ // Windows:通过 PowerShell 删除用户级注册表环境变量
232
+ if (process.platform === 'win32') {
233
+ return removeWindowsUserEnvVars(HS_KEYS)
234
+ }
235
+
230
236
  const files = getShellRcFiles()
231
237
  const cleaned = []
232
238
  for (const file of files) {