transduck 0.4.2 → 0.4.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.
package/dist/cli.js CHANGED
@@ -454,7 +454,7 @@ export async function runStats(opts) {
454
454
  }
455
455
  // CLI entry point
456
456
  const program = new Command();
457
- program.name('transduck').description('AI-native translation tool').version('0.4.2');
457
+ program.name('transduck').description('AI-native translation tool').version('0.4.3');
458
458
  program.command('init')
459
459
  .description('Initialize a new transduck project')
460
460
  .action(async () => {
package/dist/storage.js CHANGED
@@ -30,6 +30,7 @@ export class TranslationStore {
30
30
  path: this.dbPath,
31
31
  mapSize: DEFAULT_MAP_SIZE,
32
32
  encoding: 'json',
33
+ noSubdir: true,
33
34
  });
34
35
  }
35
36
  getDb() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "transduck",
3
- "version": "0.4.2",
3
+ "version": "0.4.3",
4
4
  "description": "AI-native translation tool using source text as keys",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
package/src/cli.ts CHANGED
@@ -562,7 +562,7 @@ export async function runStats(opts: StatsOptions): Promise<string> {
562
562
  // CLI entry point
563
563
  const program = new Command();
564
564
 
565
- program.name('transduck').description('AI-native translation tool').version('0.4.2');
565
+ program.name('transduck').description('AI-native translation tool').version('0.4.3');
566
566
 
567
567
  program.command('init')
568
568
  .description('Initialize a new transduck project')
package/src/storage.ts CHANGED
@@ -77,6 +77,7 @@ export class TranslationStore {
77
77
  path: this.dbPath,
78
78
  mapSize: DEFAULT_MAP_SIZE,
79
79
  encoding: 'json',
80
+ noSubdir: true,
80
81
  });
81
82
  }
82
83