Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 56264ed

Browse files
committedJan 18, 2023
build: vscode ignore and bump version
* Add few more exceptions to .vscodeignore file to further trim generated *.vsix file; * Introduced new `npm run bump-patch` and `bump-minor` commands to semi-automatic bump ov package versions.
1 parent 8aca928 commit 56264ed

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed
 

‎.vscodeignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
**/*.lua.map
44
**/tsconfig.json
55
**/tslint.json
6+
**/.eslintignore
7+
**/.eslintrc.json
68
.vscode
79
.gitignore
810
tests
11+
.github/
12+
debug-workspace/

‎package.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@
3131
"build": "npm run build-debugger && npm run build-extension",
3232
"bundle": "npm run clean && npm run lint && npm run build && vsce package",
3333
"publish": "npm run bundle && vsce publish",
34+
"bump-patch": "npm version patch -m 'Preparing %s patch release'",
35+
"bump-minor": "npm version minor -m 'Preparing %s minor release'",
3436
"clean": "rm -f debugger/*.lua && rm -f debugger/*.lua.map && rm -f extension/*.js && rm -f extension/*.js.map && rm -f *.vsix"
3537
},
3638
"dependencies": {

0 commit comments

Comments
 (0)
Please sign in to comment.