team-toon-tack 2.0.2 → 2.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.
@@ -677,9 +677,8 @@ async function init() {
677
677
  }
678
678
  await fs.writeFile(paths.localPath, encode(localConfig), "utf-8");
679
679
  console.log(` ✓ ${paths.localPath}`);
680
- // Update .gitignore
681
- const tttDir = paths.baseDir.replace(/^\.\//, "");
682
- await updateGitignore(tttDir, options.interactive ?? true);
680
+ // Update .gitignore (always use relative path .ttt)
681
+ await updateGitignore(".ttt", options.interactive ?? true);
683
682
  // Install Claude Code commands
684
683
  const { installed: commandsInstalled, prefix: commandPrefix } = await installClaudeCommands(options.interactive ?? true, statusSource);
685
684
  // Summary
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "team-toon-tack",
3
- "version": "2.0.2",
3
+ "version": "2.0.3",
4
4
  "description": "Linear task sync & management CLI with TOON format",
5
5
  "type": "module",
6
6
  "bin": {
@@ -27,7 +27,7 @@
27
27
  "@linear/sdk": "^69.0.0",
28
28
  "@toon-format/toon": "^2.1.0",
29
29
  "prompts": "^2.4.2",
30
- "team-toon-tack": "^2.0.1"
30
+ "team-toon-tack": "^2.0.2"
31
31
  },
32
32
  "devDependencies": {
33
33
  "@biomejs/biome": "^2.3.11",