We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 621d3b9 commit dabbb0dCopy full SHA for dabbb0d
.github/workflows/build.yaml
@@ -51,7 +51,7 @@ jobs:
51
52
- name: Package
53
run: |
54
- vsce package -o ${{ github.event.repository.name}}.vsix
+ vsce package -o ./${{ github.event.repository.name}}.vsix
55
56
- name: Publish
57
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
esbuild.js
@@ -1,5 +1,3 @@
1
-// file: esbuild.js
2
-
3
const { build } = require("esbuild");
4
5
const baseConfig = {
@@ -26,10 +24,6 @@ const webviewConfig = {
26
24
outfile: "./out/webview.js",
27
25
};
28
29
30
31
-// ... other configs ...
32
33
const watchConfig = {
34
watch: {
35
onRebuild(error, result) {
0 commit comments