thanh-kit 2.5.13 → 2.5.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.
package/dist/index.js CHANGED
@@ -574,7 +574,7 @@ var init_claude_adapter = __esm({
574
574
  async copyBaseFiles(targetDir, mergeMode) {
575
575
  const { CLI_ROOT: CLI_ROOT2 } = await Promise.resolve().then(() => (init_paths(), paths_exports));
576
576
  const sourceDir = join3(CLI_ROOT2, "templates");
577
- const baseFiles = ["README.md", "settings.json", ".env.example", "statusline.cjs", "statusline.ps1", "statusline.sh"];
577
+ const baseFiles = ["README.md", "settings.json", "settings.local.json", ".env.example", "statusline.cjs", "statusline.ps1", "statusline.sh"];
578
578
  const copied = [];
579
579
  for (const file of baseFiles) {
580
580
  const srcPath = join3(sourceDir, file);
@@ -2197,6 +2197,7 @@ async function initCommand(projectName, options) {
2197
2197
  }
2198
2198
  await fs9.copy(srcPath, destPath, { overwrite: !mergeMode });
2199
2199
  }
2200
+ await adapter.copyBaseFiles(targetDir, mergeMode);
2200
2201
  continue;
2201
2202
  }
2202
2203
  const filteredItems = adapter.filterInstallItems(toInstall);