team-toon-tack 1.0.3 → 1.0.4

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/bin/cli.ts +1 -1
  2. package/package.json +1 -1
package/bin/cli.ts CHANGED
@@ -52,7 +52,7 @@ function printVersion() {
52
52
  }
53
53
 
54
54
  function parseGlobalArgs(args: string[]): { dir: string; commandArgs: string[] } {
55
- let dir = process.env.TOON_DIR || process.cwd();
55
+ let dir = process.env.TOON_DIR || resolve(process.cwd(), '.ttt');
56
56
  const commandArgs: string[] = [];
57
57
 
58
58
  for (let i = 0; i < args.length; i++) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "team-toon-tack",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "description": "Linear task sync & management CLI with TOON format",
5
5
  "type": "module",
6
6
  "bin": {