forked from hacksalot/HackMyResume
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: update to 1.9.0-beta from upstream
- Loading branch information
Showing
155 changed files
with
6,775 additions
and
3,353 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,17 @@ | ||
env: | ||
es6: true | ||
node: true | ||
extends: 'eslint:recommended' | ||
rules: | ||
# indent: | ||
# - error | ||
# - 4 | ||
linebreak-style: | ||
- error | ||
- unix | ||
quotes: | ||
- error | ||
- single | ||
semi: | ||
- error | ||
- always |
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 |
---|---|---|
@@ -1,5 +1,4 @@ | ||
node_modules/ | ||
tests/sandbox/ | ||
doc/ | ||
docs/ | ||
local/ | ||
|
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 |
---|---|---|
@@ -1,9 +1,23 @@ | ||
sudo: required | ||
before_install: | ||
# Prevents a shared object .so error when running wkhtmltopdf on certain | ||
# platforms (e.g., vanilla Ubuntu 16.04 LTS). Not necessary on current Travis. | ||
# - sudo apt-get install libxrender1 | ||
install: | ||
# Install & link HackMyResume | ||
- npm install && npm link | ||
# Download and extract the latest wkhtmltopdf binaries | ||
- mkdir tmp && wget https://github.com/wkhtmltopdf/wkhtmltopdf/releases/download/0.12.4/wkhtmltox-0.12.4_linux-generic-amd64.tar.xz -O tmp/wk.tar.xz | ||
- tar -xf tmp/wk.tar.xz -C ./tmp | ||
# Copy wkhtmltopdf binaries to /usr/bin (also makes them path-accessible) | ||
- sudo cp -R ./tmp/wkhtmltox/bin/* /usr/bin/ | ||
# Now you can invoke "wkhtmltopdf" and "wkhtmltoimage" safely in tests. | ||
- wkhtmltopdf -V | ||
- wkhtmltoimage -V | ||
language: node_js | ||
node_js: | ||
- "0.10" | ||
- "0.11" | ||
- "0.12" | ||
- "4.0" | ||
- "4.1" | ||
- "4.2" | ||
- "5.0" | ||
- "6" | ||
- "7" | ||
- "8" | ||
- "9" | ||
- "lts/*" |
Oops, something went wrong.