cc-hub-cli 1.1.14 → 1.1.15

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 +1 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -1311,7 +1311,7 @@ function profileCommand() {
1311
1311
  ensureSettingsFile();
1312
1312
  const settings2 = readJson(SETTINGS_FILE);
1313
1313
  const exported = Object.fromEntries(
1314
- Object.entries(settings2).filter(([key]) => !key.startsWith("_"))
1314
+ Object.entries(settings2).filter(([key]) => !key.startsWith("_") && key != "env")
1315
1315
  );
1316
1316
  const env = {
1317
1317
  ...typeof exported.env === "object" && exported.env !== null ? exported.env : {}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cc-hub-cli",
3
- "version": "1.1.14",
3
+ "version": "1.1.15",
4
4
  "description": "Manage Claude CLI profiles, hooks, and sessions",
5
5
  "type": "module",
6
6
  "bin": {