@leynier/ccst 0.2.0 → 0.2.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": "@leynier/ccst",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "Claude Code Switch Tools for managing contexts",
5
5
  "keywords": [
6
6
  "claude",
@@ -72,6 +72,7 @@ export const importFromCcs = async (manager: ContextManager, configsDir?: string
72
72
  for (const fileName of entries) {
73
73
  const settingsPath = path.join(ccsPath, fileName);
74
74
  const profileName = fileName.replace(/\.settings\.json$/u, "");
75
+ console.log(` 📦 Importing '${colors.cyan(profileName)}'...`);
75
76
  const settings = await readJson<Record<string, unknown>>(settingsPath);
76
77
  const merged = deepMerge(defaultConfig, settings);
77
78
  if (currentContext && currentContext === profileName) {
@@ -55,6 +55,7 @@ export const importFromConfigs = async (manager: ContextManager, configsDir?: st
55
55
  for (const fileName of entries) {
56
56
  const configPath = path.join(dir, fileName);
57
57
  const profileName = path.basename(fileName, ".json");
58
+ console.log(` 📦 Importing '${colors.cyan(profileName)}'...`);
58
59
  const config = await readJson<Record<string, unknown>>(configPath);
59
60
  const merged = fileName === "default.json" ? config : deepMerge(defaultConfig, config);
60
61
  if (currentContext && currentContext === profileName) {