-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Appveyor config for windows builds
- Loading branch information
1 parent
d12e802
commit 1145fa1
Showing
1 changed file
with
34 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,34 @@ | ||
version: 0.4.0 | ||
|
||
platform: | ||
- x64 | ||
|
||
cache: | ||
- node_modules | ||
- app\node_modules | ||
- '%APPDATA%\npm-cache' | ||
- '%USERPROFILE%\.electron' | ||
|
||
init: | ||
- git config --global core.autocrlf input | ||
|
||
install: | ||
- ps: Install-Product node 6 x64 | ||
- git reset --hard HEAD | ||
- npm install npm -g | ||
- npm install | ||
- npm prune | ||
- cd app | ||
- npm install | ||
- npm prune | ||
- cd .. | ||
|
||
build_script: | ||
- node --version | ||
- npm --version | ||
- cd app | ||
- npm run make-dist | ||
- cd .. | ||
- npm run dist | ||
|
||
test: off |