Skip to content

Commit 89258c6

Browse files
committed
Update the ripgrep version.
1 parent f8004e8 commit 89258c6

File tree

4 files changed

+39
-48
lines changed

4 files changed

+39
-48
lines changed

package-lock.json

Lines changed: 35 additions & 44 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,6 @@
6767
"pretty-quick": "^4.1.1",
6868
"ts-node": "^10.9.1",
6969
"typescript": "^5.0.4",
70-
"vscode-ripgrep": "^1.13.2",
7170
"webpack": "^5.95.0",
7271
"webpack-cli": "^5.1.4",
7372
"webpack-dev-server": "^4.15.2",
@@ -76,6 +75,7 @@
7675
"dependencies": {
7776
"@types/node": "^22.7.5",
7877
"vscode-nls": "^5.2.0",
79-
"vscode-nls-dev": "^4.0.4"
78+
"vscode-nls-dev": "^4.0.4",
79+
"@vscode/ripgrep": "1.15.11"
8080
}
8181
}

packages/amazonq/scripts/build/copyFiles.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ const tasks: CopyTask[] = [
6262
},
6363
// ripgrep binary
6464
{
65-
target: path.join('../../node_modules', 'vscode-ripgrep', 'bin'),
65+
target: path.join('../../node_modules', '@vscode/ripgrep', 'bin'),
6666
destination: 'bin/',
6767
},
6868
]

packages/core/src/codewhispererChat/tools/grepSearch.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { sanitizePath, InvokeOutput, OutputKind } from './toolShared'
88
import fs from '../../shared/fs/fs'
99
import { Writable } from 'stream'
1010
import { ChildProcess, ChildProcessOptions } from '../../shared/utilities/processUtils'
11-
import { rgPath } from 'vscode-ripgrep'
11+
import { rgPath } from '@vscode/ripgrep'
1212
import path from 'path'
1313

1414
export interface GrepSearchParams {

0 commit comments

Comments
 (0)