Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Node v13 support #91

Merged
1 commit merged into from
Oct 31, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 15 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
language: node_js
node_js
node_js:
- "13"
- "12"
- "11"
- "10"
Expand All @@ -8,7 +9,6 @@ node_js
- "7"
- "6"
- "4"
- "0.12"
- "iojs"

compiler: gcc
Expand Down Expand Up @@ -38,14 +38,23 @@ addons:
packages:
- gcc-4.7
- g++-4.7
- gcc-4.9
- g++-4.9

before_install:
- npm config set python `which python`
- if [ $TRAVIS_OS_NAME == "linux" ]; then
export CC="gcc-4.7";
export CXX="g++-4.7";
export LINK="gcc-4.7";
export LINKXX="g++-4.7";
if (( $(node -v | sed 's/v//' | sed 's/\..*$//') > 9 )); then
export CC="gcc-4.9";
export CXX="g++-4.9";
export LINK="gcc-4.9";
export LINKXX="g++-4.9";
else
export CC="gcc-4.7";
export CXX="g++-4.7";
export LINK="gcc-4.7";
export LINKXX="g++-4.7";
fi
fi
- nvm --version
- node --version
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"get-stdin": "^4.0.1",
"glob": "^7.0.3",
"meow": "^3.7.0",
"node-sass": "4.12",
"node-sass": "4.13",
"sass-graph": "^2.1.1",
"stdout-stream": "^1.4.0"
},
Expand Down
2 changes: 1 addition & 1 deletion test/fixtures/source-map-embed/expected.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.