Add CLI package

This commit is contained in:
2026-05-05 12:03:46 +00:00
commit a279032cf4
9 changed files with 189 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
import { expect, tap } from '@git.zone/tstest/tapbundle';
import { normalizeFileStem } from '../ts/index.js';
tap.test('normalizes generated file names', async () => {
expect(normalizeFileStem('Plant Sitter!')).toEqual('plant-sitter');
});
export default tap.start();