File tree Expand file tree Collapse file tree 4 files changed +8
-6
lines changed Expand file tree Collapse file tree 4 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -187,9 +187,6 @@ jobs:
187
187
- name : Chocolatey
188
188
if : *deploy-if
189
189
env :
190
- # File system watching is extra flaky on Dart 2.5.0 on Windows (see
191
- # dart-lang/sdk#38334).
192
- - DART_VERSION=2.4.1
193
190
# CHOCO_TOKEN="..."
194
191
- secure : " cW11kQYBBEElfVsc1pJfVEHOMYwt0ZK+9STZHwSPbAISlplIRnsimMN7TqCY2aLnkWXyUMU7DphIl9uQ86M4BT1bJopsHbapj27bFSlKWHlBSDB/xylFHywV41Yk5lMlr8DLMbsSzVahasyR34xS6HYIRlDpZ9TFiQuDQNJxQmqTZJg/FC+3nqCI7tyMKGkWc48ikTcmqDMHsG9CudG2u+Q3S9sLNXArh9T4tSnAyWkTvSrS05mvFx5tC83PcG9/VkioTId+VRSJchwTmCxDFDROrTikTXZMtYn8wMAQ2wQ34TQXNZMZ9uiHA6W0IuJV2EnYerJbqV2lrJq9xqZywKu6HW6i4GhrCvizALNFZx/N7s/10xuf3UcuWizYml/e0MYT+6t4ojTYBMKv+Cx+H2Y2Jdpvdn2ZAIl6LaU3pLw4OIPJ7aXjDwZd63MPxtwGwVLHbH7Zu+oUv1erIq5LtatuocGWipD8WdiMBQvyCuDRMowpLPoAbj+mevOf+xlY2Eym4tOXpxM7iY3lXFHROo5dQbhsARfVF9J1gl5PuYXvCjxqTfK/ef9t3ZoDbi57+yAJUWlZfWa5r1zKE8OS0pA8GfQRLom/Lt0wKVw4Xiofgolzd9pEHi4JpsYIQb8O+u1ACQU6nBCS87CGrQ+ylnzKfGUs0aW2K3gvbkg0LUg="
195
192
script : skip
Original file line number Diff line number Diff line change
1
+ ## 1.23.6
2
+
3
+ * No user-visible changes.
4
+
1
5
## 1.23.5
2
6
3
7
* Support inline comments in the indented syntax.
Original file line number Diff line number Diff line change 1
1
name : sass
2
- version : 1.23.5
2
+ version : 1.23.6
3
3
description : A Sass implementation in Dart.
4
4
author : Sass Team
5
5
homepage : https://github.com/sass/dart-sass
Original file line number Diff line number Diff line change @@ -27,10 +27,11 @@ void appSnapshot() => _appSnapshot();
27
27
@Task ('Build a native-code Dart executable.' )
28
28
void nativeExecutable () {
29
29
ensureBuild ();
30
- run (p.join (sdkDir.path, 'bin/dart2aot' ), arguments: [
30
+ run (p.join (sdkDir.path, 'bin/dart2native' ), arguments: [
31
+ '--output-kind=aot' ,
31
32
'bin/sass.dart' ,
32
33
'-Dversion=$version ' ,
33
- 'build/sass.dart.native'
34
+ '--output= build/sass.dart.native'
34
35
]);
35
36
}
36
37
You can’t perform that action at this time.
0 commit comments