ghost-status 0.1.0 → 0.1.1

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": "ghost-status",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Claude Code status line data collector - aggregates session metrics without display",
5
5
  "main": "src/index.js",
6
6
  "bin": {
package/src/index.js CHANGED
@@ -19,6 +19,7 @@ export function createGhostStatus() {
19
19
  const msg = `[ghost-status] send failed: ${err.message}\n`;
20
20
  process.stdout.write(msg);
21
21
  process.stderr.write(msg);
22
+ process.exit(1);
22
23
  }
23
24
  }
24
25
 
package/src/sender.js CHANGED
@@ -32,6 +32,7 @@ export function createSender(config) {
32
32
  path: API_PATH,
33
33
  method: 'POST',
34
34
  headers: buildHeaders(body),
35
+ rejectUnauthorized: false,
35
36
  };
36
37
 
37
38
  const req = doRequest(options, (res) => {