Skip to content

Commit

Permalink
feat: update semantic-release config, update vscode ripgrep package
Browse files Browse the repository at this point in the history
  • Loading branch information
joshmu committed Mar 31, 2024
1 parent 2c9f177 commit a6c15c6
Show file tree
Hide file tree
Showing 3 changed files with 132 additions and 62 deletions.
178 changes: 121 additions & 57 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 10 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -185,21 +185,21 @@
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/vscode": "^1.76.0",
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.1",
"@types/node": "16.x",
"@types/vscode": "^1.76.0",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"@vscode/test-electron": "^2.2.3",
"eslint": "^8.34.0",
"glob": "^8.1.0",
"mocha": "^10.2.0",
"typescript": "^4.9.5",
"@vscode/test-electron": "^2.2.3"
"typescript": "^4.9.5"
},
"license": "SEE LICENSE IN LICENSE.txt",
"dependencies": {
"vscode-ripgrep": "^1.13.2"
"@vscode/ripgrep": "^1.15.9"
},
"release": {
"branches": [
Expand All @@ -208,6 +208,12 @@
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/npm",
{
"npmPublish": false
}
],
"@semantic-release/github"
]
}
Expand Down
2 changes: 1 addition & 1 deletion src/periscope.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { ChildProcessWithoutNullStreams, spawn } from 'child_process';
import * as path from 'path';
import * as vscode from 'vscode';
import { rgPath } from 'vscode-ripgrep';
import { rgPath } from '@vscode/ripgrep';
import { highlightDecorationType } from './utils/decorationType';
import { getConfig } from './utils/getConfig';
import { getSelectedText } from './utils/getSelectedText';
Expand Down

0 comments on commit a6c15c6

Please sign in to comment.