totopo 1.0.0-rc-2 → 1.0.3

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.
@@ -19,7 +19,7 @@ export async function run(packageDir, repoRoot) {
19
19
  // ─── Intro ───────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
20
20
  process.stdout.write("\n");
21
21
  intro("totopo — First-time setup");
22
- log.message("");
22
+ process.stdout.write("\n");
23
23
  box(`project : ${projectName}\nlocation : ${tildefy(totopoDir)}`, "", {
24
24
  contentAlign: "center",
25
25
  titleAlign: "center",
@@ -77,11 +77,11 @@ export async function run(packageDir, repoRoot) {
77
77
  const globalEnvPath = join(globalTotopoDir, ".env");
78
78
  mkdirSync(globalTotopoDir, { recursive: true });
79
79
  if (existsSync(globalEnvPath)) {
80
- log.info(`${globalEnvPath} already exists — leaving it untouched`);
80
+ log.info(`${tildefy(globalEnvPath)} already exists — leaving it untouched`);
81
81
  }
82
82
  else {
83
83
  cpSync(join(templatesDir, "env"), globalEnvPath);
84
- log.success(`Created ${globalEnvPath}`);
84
+ log.success(`Created ${tildefy(globalEnvPath)}`);
85
85
  }
86
86
  // ─── Gitignore ───────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
87
87
  const gitignorePath = join(repoRoot, ".gitignore");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "totopo",
3
- "version": "1.0.0-rc-2",
3
+ "version": "1.0.3",
4
4
  "description": "Secure AI Box — isolated dev environments for AI coding assistants",
5
5
  "type": "module",
6
6
  "bin": {