@signetai/connector-claude-code 0.199.2 → 0.199.4

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/dist/index.js +3 -3
  2. package/package.json +3 -3
package/dist/index.js CHANGED
@@ -6,7 +6,7 @@ import { join as join4 } from "node:path";
6
6
 
7
7
  // ../../../libs/connector-base/dist/index.js
8
8
  import { randomBytes } from "node:crypto";
9
- import { existsSync, readFileSync, renameSync, statSync as statSync2, unlinkSync as unlinkSync2, writeFileSync } from "node:fs";
9
+ import { existsSync, readFileSync, renameSync as renameSync2, statSync as statSync2, unlinkSync as unlinkSync2, writeFileSync } from "node:fs";
10
10
  import { dirname as dirname5, isAbsolute, join as join3, relative, sep } from "node:path";
11
11
  import { createRequire } from "node:module";
12
12
  import { dirname, join } from "node:path";
@@ -12585,7 +12585,7 @@ class BaseConnector {
12585
12585
  const tmp = join3(basePath, `.${randomBytes(6).toString("hex")}.tmp`);
12586
12586
  try {
12587
12587
  writeFileSync(tmp, cleaned, "utf-8");
12588
- renameSync(tmp, agentsPath);
12588
+ renameSync2(tmp, agentsPath);
12589
12589
  } catch (err) {
12590
12590
  try {
12591
12591
  unlinkSync2(tmp);
@@ -12649,7 +12649,7 @@ function atomicWriteText(path, content, mode) {
12649
12649
  }
12650
12650
  try {
12651
12651
  writeFileSync(tmp, content, { encoding: "utf-8", mode: writeMode });
12652
- renameSync(tmp, path);
12652
+ renameSync2(tmp, path);
12653
12653
  } catch (err) {
12654
12654
  try {
12655
12655
  unlinkSync2(tmp);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@signetai/connector-claude-code",
3
- "version": "0.199.2",
3
+ "version": "0.199.4",
4
4
  "description": "Signet connector for Claude Code (Anthropic CLI)",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -24,8 +24,8 @@
24
24
  "typecheck": "tsc --noEmit"
25
25
  },
26
26
  "dependencies": {
27
- "@signetai/connector-base": "0.199.2",
28
- "@signetai/core": "0.199.2"
27
+ "@signetai/connector-base": "0.199.4",
28
+ "@signetai/core": "0.199.4"
29
29
  },
30
30
  "devDependencies": {
31
31
  "@types/node": "^22.0.0",