Skip to content

Commit 611bbee

Browse files
authored
chore: fix build script (#10)
1 parent 6f8fcc9 commit 611bbee

3 files changed

Lines changed: 20 additions & 5 deletions

File tree

.vscodeignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,4 @@ test-fixture/**
2020
justfile
2121
.npmrc
2222
*.vsix
23+
vitest.config.mts

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# Change Log
22

3+
## [0.3.0]
4+
5+
- Restore the code rendering style when the Esc key is pressed [#5](https://github.com/char8x/vscode-code-dimmer/pull/5)
6+
- Add test cases [#6](https://github.com/char8x/vscode-code-dimmer/pull/6)
7+
- Rename config settings and identifiers from codeFader to codeDimmer [#7](https://github.com/char8x/vscode-code-dimmer/pull/7)
8+
- Update justfile [#8](https://github.com/char8x/vscode-code-dimmer/pull/8)
9+
- Bump version to 0.3.0 [#9](https://github.com/char8x/vscode-code-dimmer/pull/9)
10+
11+
## [0.2.0]
12+
13+
- Rename extension
14+
- Add license
15+
- Refine documentation materials and instructions
16+
- Ignore media files for publish
17+
318
## [0.1.0]
419

520
- Initial release

justfile

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,11 @@ prepare version:
1818
git commit -m "chore: bump version to {{version}}"
1919
git push origin "release/v{{version}}"
2020

21+
test-release version:
22+
vsce package -o {{extension_name}}-v{{version}}.vsix
23+
2124
release version:
22-
git checkout main
23-
git pull origin main
2425
git tag -a "v{{version}}" -m "Release v{{version}}"
2526
git push origin "v{{version}}"
26-
vsce package -o {{extension_name}}-v{{version}}.vsix
27-
gh release create v{{version}} ./{{extension_name}}-v{{version}}.vsix --generate-notes --notes-file CHANGELOG.md
27+
gh release create v{{version}} ./{{extension_name}}-v{{version}}.vsix --generate-notes
2828
vsce publish {{version}}
29-

0 commit comments

Comments
 (0)