Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: sanity check manual deploy #21

Merged
merged 2 commits into from
Apr 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions .github/workflows/publish-vscode-extension.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,14 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# Add any other tokens or configuration required by semantic-release plugins

- name: Install Visual Studio Marketplace CLI
run: npm install -g vsce
# - name: Install Visual Studio Marketplace CLI
# run: npm install -g vsce

- name: Package & Publish Extension to Visual Studio Marketplace
run: vsce publish --pat ${{ secrets.VS_MARKETPLACE_TOKEN }}
# - name: Package & Publish Extension to Visual Studio Marketplace
# run: vsce publish --pat ${{ secrets.VS_MARKETPLACE_TOKEN }}

- name: Install Open VSX CLI
run: npm install -g ovsx
# - name: Install Open VSX CLI
# run: npm install -g ovsx

- name: Package & Publish Extension to Open VSX Registry
run: ovsx publish --pat ${{ secrets.OPEN_VSX_TOKEN }}
# - name: Package & Publish Extension to Open VSX Registry
# run: ovsx publish --pat ${{ secrets.OPEN_VSX_TOKEN }}
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.

15 changes: 14 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,19 @@
"name": "periscope",
"displayName": "Periscope",
"description": "ripgrep workspace search with file peek",
"keywords": [
"rg",
"ripgrep",
"search",
"telescope",
"peek",
"grep",
"file search",
"workspace search",
"search in files",
"search in folder",
"search preview"
],
"version": "1.3.6",
"publisher": "JoshMu",
"icon": "assets/icon.png",
Expand Down Expand Up @@ -200,7 +213,7 @@
},
"license": "SEE LICENSE IN LICENSE.txt",
"dependencies": {
"vscode-ripgrep": "1.13.2"
"@vscode/ripgrep": "^1.15.9"
},
"release": {
"branches": [
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