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

Use imports everywhere #3176

Merged
merged 10 commits into from
Nov 7, 2020
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
27 changes: 21 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,21 @@
script:
- "test/sass-compile-tester.sh"

language: sass
before_install:
- gem install sass
matrix:
include:
- language: sass
before_install:
- gem install sass
script:
- test/ruby-sass/ruby-sass.sh
- language: node_js
node_js:
- node
before_script:
- npm install sass
script:
- node test/dart-sass/dart-sass.js
- language: node_js
node_js:
- node
before_script:
- npm install node-sass
script:
- node test/node-sass/node-sass.js
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
### Improvements

* Fix #3012 Add `$media-*` variables, set to `!default`
* Fix #2797 Import dependencies individually for each component

## 0.9.1

Expand Down
Loading