@make-u-free/migi 0.2.3 → 0.2.5

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/tls.js +3 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@make-u-free/migi",
3
- "version": "0.2.3",
3
+ "version": "0.2.5",
4
4
  "description": "Your AI right-hand agent. Works anywhere, with any LLM API.",
5
5
  "type": "module",
6
6
  "bin": {
package/src/tls.js CHANGED
@@ -45,7 +45,9 @@ if (caPath) {
45
45
  // ③ https.Agent(node-fetch 系フォールバック)
46
46
  _httpsAgent = new https.Agent({ ca: caCert })
47
47
 
48
- console.error(` [TLS] CA loaded: ${caPath}`)
48
+ console.log(` [TLS] CA loaded: ${caPath}`)
49
+ } else {
50
+ console.log(' [TLS] CA未設定 (社内エラー時は ~/.migi/zscaler-ca.pem を配置)')
49
51
  }
50
52
 
51
53
  export const httpsAgent = _httpsAgent