Skip to content
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
4 changes: 2 additions & 2 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
git config --global user.email "256439237+app-token-vscode-buf-release[bot]@users.noreply.github.com"
git config --global user.name "app-token-vscode-buf-release[bot]"
git config --global url."https://x-access-token:${{ steps.generate_gh_token.outputs.token }}@github.com/bufbuild/vscode-buf".insteadOf "https://github.com/bufbuild/vscode-buf"
npx vsce package ${{ github.event.release.tag_name }}
npm run package ${{ github.event.release.tag_name }}
git push https://x-access-token:${{ steps.generate_gh_token.outputs.token }}@github.com/${{ github.repository }}.git HEAD:${{ github.event.repository.default_branch }}

- name: Package extension (pre-release)
Expand All @@ -51,7 +51,7 @@ jobs:
git config --global user.email "256439237+app-token-vscode-buf-release[bot]@users.noreply.github.com"
git config --global user.name "app-token-vscode-buf-release[bot]"
git config --global url."https://x-access-token:${{ steps.generate_gh_token.outputs.token }}@github.com/bufbuild/vscode-buf".insteadOf "https://github.com/bufbuild/vscode-buf"
npx vsce package --pre-release ${{ github.event.release.tag_name }}
npm run package:prerelease ${{ github.event.release.tag_name }}
git push https://x-access-token:${{ steps.generate_gh_token.outputs.token }}@github.com/${{ github.repository }}.git HEAD:${{ github.event.repository.default_branch }}

- name: Publish to VS Code Marketplace (regular)
Expand Down
6 changes: 1 addition & 5 deletions .vscodeignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,7 @@
.envrc
.env
.nvmrc
out/
dist/**/*.map
preview.gif
out/test/**
src/**
test/**
test-results/**
Expand All @@ -20,5 +18,3 @@ scripts/**
.vscode-test.mjs
DEVELOPMENT.md
Makefile
node_modules
esbuild.js
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

.PHONY: package
package:
npx vsce package
npm run package

.PHONY: install
install:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ documentation and diagnostic hovers, and integrations with [Buf][buf] commands.
- **Syntax highlighting**: Code styling that provides clarity on Protobuf keywords and identifiers.
- **Diagnostics**: Get highlights and feedback on build and lint errors as you code.

![Preview features](https://raw.githubusercontent.com/bufbuild/vscode-buf/main/preview.gif)
![Preview features](./preview.gif)

This extension doesn't stop at editing: open the [Command Palette][command-palette] (`Ctrl/Cmd+Shift+P`)
to quickly run common `buf` tasks such as `buf generate`. See the [full list of commands](#commands) for more.
Expand Down
58 changes: 0 additions & 58 deletions esbuild.js

This file was deleted.

Loading