-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Place builds in a 'builds' sub directory
- Loading branch information
1 parent
22fc378
commit a9c30e2
Showing
3 changed files
with
13 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
node_modules | ||
out | ||
src/test | ||
test.bat | ||
*.vsix | ||
builds | ||
*.vsix | ||
test.bat |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,4 +14,5 @@ vsc-extension-quickstart.md | |
build-scripts | ||
|
||
test.bat | ||
media/demo | ||
media/demo | ||
builds |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,10 @@ | ||
cd "%~dp0../" | ||
rmdir /S /Q "./out/" | ||
vsce package | ||
|
||
@REM Make sure the out builds directory exists | ||
set OutDir="./builds/" | ||
if not exist %OutDir% ( | ||
mkdir %OutDir% | ||
) | ||
|
||
vsce package --out %OutDir% |