Skip to content

Commit 6694524

Browse files
authored
Added files .vscodeignore and added bundling to release.yml (#159)
* Added files .vscodeignore and added bundling to release.yml * Further chanages to .vscodeignore
1 parent 68e2270 commit 6694524

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,10 @@ jobs:
4040

4141
# Optional build (ensure dist/extension.js exists if using bundler)
4242
- name: Build Extension
43-
run: npm run esbuild --if-present
43+
run: npm run esbuild
44+
45+
- name: Package extension
46+
run: npx vsce package
4447

4548
# Capture version from package.json for later release creation
4649
- name: Extract Version

.vscodeignore

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,17 @@
11
.vscode/**
22
.vscode-test/**
3-
3+
.git/
44
.gitignore
5+
.github/
56
.yarnrc
67
vsc-extension-quickstart.md
78
**/tsconfig.json
89
**/.eslintrc.json
910
**/*.map
1011
**/*.ts
1112
**/.vscode-test.*
13+
14+
docs/**
15+
CHANGELOG.md
16+
LICENSE.md
17+
README.md

0 commit comments

Comments
 (0)