Skip to content

Commit dabbb0d

Browse files
committed
changing package output path
1 parent 621d3b9 commit dabbb0d

File tree

2 files changed

+1
-7
lines changed

2 files changed

+1
-7
lines changed

.github/workflows/build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
5252
- name: Package
5353
run: |
54-
vsce package -o ${{ github.event.repository.name}}.vsix
54+
vsce package -o ./${{ github.event.repository.name}}.vsix
5555
5656
- name: Publish
5757
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}

esbuild.js

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
// file: esbuild.js
2-
31
const { build } = require("esbuild");
42

53
const baseConfig = {
@@ -26,10 +24,6 @@ const webviewConfig = {
2624
outfile: "./out/webview.js",
2725
};
2826

29-
// file: esbuild.js
30-
31-
// ... other configs ...
32-
3327
const watchConfig = {
3428
watch: {
3529
onRebuild(error, result) {

0 commit comments

Comments
 (0)