File tree Expand file tree Collapse file tree 4 files changed +23
-5
lines changed Expand file tree Collapse file tree 4 files changed +23
-5
lines changed Original file line number Diff line number Diff line change @@ -5,15 +5,17 @@ language: ruby
55
66env :
77 global :
8- - DART_CHANNEL=dev
8+ - DART_CHANNEL=stable
99 - DART_VERSION=latest
1010 matrix :
1111 # Language specs, defined in sass/sass-spec
1212 - TASK=specs
13+ - TASK=specs DART_CHANNEL=dev
1314 - TASK=specs ASYNC=true
1415
1516 # Unit tests, defined in test/.
1617 - TASK=tests
18+ - TASK=tests DART_CHANNEL=dev
1719 - TASK=tests NODE_VERSION=stable
1820
1921 # Keep these up-to-date with the latest LTA Node releases. They next need to be
3032
3133# Only building master means that we don't run two builds for each pull request.
3234branches :
33- only : [master, "/^feature\\..*/", "/^\\d+\\.\\d+\\.\\d+([+-].*)?$/"]
35+ only :
36+ - master
37+ # Feature branches beginning with "feature."
38+ - " /^feature\\ ..*/"
39+ # Semantic version tags and legacy branches of the form "1.2.x".
40+ - " /^\\ d+\\ .\\ d+\\ .(\\ d+([+-].*)?|x)$/"
3441
3542cache :
3643 directories :
Original file line number Diff line number Diff line change 2424* The ` --watch ` command now continues to recompile a file after a syntax error
2525 has been detected.
2626
27+ ## 1.10.4
28+
29+ ### Command-Line Interface
30+
31+ * Fix a Homebrew installation failure.
32+
2733## 1.10.3
2834
2935### Command-Line Interface
Original file line number Diff line number Diff line change 11build : off
22
33branches :
4- only : [master, /^features\..*]
4+ only :
5+ - master
6+ # Feature branches beginning with "feature."
7+ - " /^feature\\ ..*/"
8+ # Semantic version tags and legacy branches of the form "1.2.x".
9+ - " /^\\ d+\\ .\\ d+\\ .(\\ d+([+-].*)?|x)$/"
510
611# Don't run specs because sass-spec doesn't support Windows. They're also
712# supposed to be platform-independent.
@@ -11,7 +16,7 @@ environment:
1116 - {TASK: tests, NODE: true}
1217
1318install :
14- - choco install --pre dart-sdk
19+ - choco install dart-sdk
1520- refreshenv
1621- pub get
1722- ps : >-
Original file line number Diff line number Diff line change @@ -41,6 +41,6 @@ dev_dependencies:
4141 stream_channel : " ^1.0.0"
4242 test_descriptor : " ^1.1.0"
4343 test_process : " ^1.0.0-rc.1"
44- test : " ^ 0.12.42"
44+ test : " >= 0.12.42 <2.0.0 "
4545 xml : " >=2.4.0 <4.0.0"
4646 yaml : " ^2.0.0"
You can’t perform that action at this time.
0 commit comments