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 68e2270 commit 6694524Copy full SHA for 6694524
.github/workflows/release.yml
@@ -40,7 +40,10 @@ jobs:
40
41
# Optional build (ensure dist/extension.js exists if using bundler)
42
- name: Build Extension
43
- run: npm run esbuild --if-present
+ run: npm run esbuild
44
+
45
+ - name: Package extension
46
+ run: npx vsce package
47
48
# Capture version from package.json for later release creation
49
- name: Extract Version
.vscodeignore
@@ -1,11 +1,17 @@
1
.vscode/**
2
.vscode-test/**
3
-
+.git/
4
.gitignore
5
+.github/
6
.yarnrc
7
vsc-extension-quickstart.md
8
**/tsconfig.json
9
**/.eslintrc.json
10
**/*.map
11
**/*.ts
12
**/.vscode-test.*
13
14
+docs/**
15
+CHANGELOG.md
16
+LICENSE.md
17
+README.md
0 commit comments