We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 80a9a94 commit 02b8e7aCopy full SHA for 02b8e7a
packages/code-map/src/parse.ts
@@ -1,7 +1,6 @@
1
import * as fs from 'fs'
2
import * as path from 'path'
3
4
-import { pluralize } from '@codebuff/common/util/string'
5
import { uniq } from 'lodash'
6
7
import { getLanguageConfig } from './languages'
@@ -131,7 +130,7 @@ export async function getFileTokenScores(
131
130
if (DEBUG_PARSING) {
132
const endTime = Date.now()
133
console.log(
134
- `Parsed ${pluralize(filePaths.length, 'file')} in ${endTime - startTime}ms`,
+ `Parsed ${filePaths.length} files in ${endTime - startTime}ms`,
135
)
136
137
fs.writeFileSync(
0 commit comments