-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
28 changed files
with
796 additions
and
541 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,22 +1,5 @@ | ||
# See http://help.github.com/ignore-files/ for more about ignoring files. | ||
# | ||
# If you find yourself ignoring temporary files generated by your text editor | ||
# or operating system, you probably want to add a global ignore instead: | ||
# git config --global core.excludesfile ~/.gitignore_global | ||
|
||
# Ignore bundler config | ||
/.bundle | ||
|
||
# Ignore the build directory | ||
/build | ||
|
||
# Ignore cache | ||
/.sass-cache | ||
/.cache | ||
|
||
# Ignore .DS_store file | ||
.DS_Store | ||
|
||
manager.sublime-workspace | ||
node_modules | ||
bower_components/ | ||
package-lock.json | ||
bundle | ||
.sass-cache | ||
dist |
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 @@ | ||
v8.2.1 |
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,40 @@ | ||
sudo: required | ||
dist: trusty | ||
language: node_js | ||
cache: | ||
directories: | ||
- "$HOME/.cache/electron-builder" | ||
- "$HOME/.npm" | ||
- "$HOME/.electron" | ||
matrix: | ||
include: | ||
- os: osx | ||
node_js: 6 | ||
- os: linux | ||
node_js: 6 | ||
addons: | ||
apt: | ||
packages: | ||
- libgnome-keyring-dev | ||
- icnsutils | ||
- graphicsmagick | ||
- xz-utils | ||
- rpm | ||
- bsdtar | ||
before_install: | ||
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then export DISPLAY=:99.0; sh -e /etc/init.d/xvfb start; sleep 3; fi | ||
install: | ||
- npm install | ||
before_script: | ||
- export | ||
script: | ||
- npm run dist | ||
env: | ||
global: | ||
# GH_TOKEN: | ||
- secure: "jvf4Ru0f+NsloMtPdr5tkI+kyo7X/hkLavJAD1YotYse63pUXPPaZ8rJKOduoMNLjlUhV+sJps+jBOwF0yY4xRTa8A/8ugjDMb7qo/8j1Glh+BPr87ldWZjiyTimq7PnBwsDFd4tY+ZmU6wgEl3E1PMq9dMaNxKjH3PPtWy3198=" | ||
# CSC_LINK: | ||
- secure: "PJ0T4bAb/0k8qwN4unDaMrddIEYDmY8r1u1BXtn13+LF+Nwx0K0qnfoRWax/APXZ4htMhYCv7Dwrw+DYk/xhTjd6LSVIW8AYR8cVJ3GQJPj0NuMJELaLJEWEP6PNDUYPsEpqF07EzkshLMdlCaToHmqw8Rf29APxSyJshL7ELVk=" | ||
# CSC_KEY_PASSWORD: | ||
- secure: "ZV/pnyGOkgLgDtR7BaNbw/pqcIbpptaNnh6w6hOcOIqyPnssCMIY1tgczlH0W4THtepnQ3g3UtT9dwIz6MlF+Thn0yxSvnMYrVTgub1DLfTU38AQ69iQG5dP8uneIFPX7Ya77mjJaOyyQHHYvJ+0e+v39Ls5rHM69HmdaEsFBSY=" | ||
|
This file was deleted.
Oops, something went wrong.
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
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,28 @@ | ||
# https://github.com/sindresorhus/appveyor-node/blob/master/appveyor.yml | ||
|
||
environment: | ||
matrix: | ||
- platform: x64 | ||
GH_TOKEN: | ||
secure: MbDdGuVFVB201kz9IM8K93eAKcyzltsFeLMBxJqZDnR0sLW59E13rHiJ5wHV76/x | ||
|
||
image: Visual Studio 2015 | ||
|
||
init: | ||
- npm config set msvs_version 2015 # we need this to build `pty.js` | ||
|
||
install: | ||
- ps: Install-Product node 6 x64 | ||
- npm install | ||
|
||
build_script: | ||
- npm run dist | ||
|
||
shallow_clone: true | ||
|
||
test_script: | ||
- node --version | ||
- npm --version | ||
|
||
on_success: | ||
- ps: ls .\dist\win\*.exe | % { Push-AppveyorArtifact $_.FullName } |
This file was deleted.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.