Skip to content

Commit eeed07f

Browse files
committed
chore: develop work
1 parent 6ef79e0 commit eeed07f

File tree

3 files changed

+14
-4
lines changed

3 files changed

+14
-4
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# 📝 Changelog (from TODOs)
2+
3+
## TODO
4+
- .ts (`src/testTodo.ts:1`)
5+
6+
## TODO · refactor
7+
- Refactor this logic to improve performance (`src/testTodo.ts:2`)
8+
9+
## TODO · performance
10+
- Refactor this logic to improve performance (`src/testTodo.ts:2`)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"build": "tsc",
88
"test": "vitest run",
99
"prepare": "yarn ncc build src/ActionMain.ts -o dist",
10-
"changelog": "ts-node src/generateChangelog.ts",
10+
"changelog": "ts-node scripts/generateChangelog.ts",
1111
"build:dist": "ncc build src/ActionMain.ts -o dist"
1212
},
1313
"keywords": [

src/generateChangelog.ts renamed to scripts/generateChangelog.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import fs from 'fs';
22
import path from 'path';
3-
import { extractTodosFromDir } from './core/extractTodosFromDir';
4-
import { classifyTodoText } from './core/classifier';
5-
import { TodoItem } from './parser/types';
3+
import { extractTodosFromDir } from '../src/parser/extractTodosFromDir';
4+
import { classifyTodoText } from '../src/core/classifier';
5+
import { TodoItem } from '../src/parser/types';
66

77
function formatGroupHeader(tag: string, semantic: string, metadataKey?: string, metadataValue?: string): string {
88
const parts = [tag];

0 commit comments

Comments
 (0)