File tree Expand file tree Collapse file tree 4 files changed +13
-7
lines changed Expand file tree Collapse file tree 4 files changed +13
-7
lines changed Original file line number Diff line number Diff line change @@ -83,13 +83,11 @@ jobs:
83
83
steps :
84
84
- uses : actions/checkout@v2
85
85
- uses : dart-lang/setup-dart@v1
86
- # TODO(jathak): Use the latest Dart when dart-lang/sdk#45488
87
- with : {sdk: 2.12.4}
88
86
- run : dart pub get
89
87
- name : Analyze dart
90
- run : dartanalyzer --fatal-warnings --fatal-infos lib tool test
88
+ run : dart analyze --fatal-warnings --fatal-infos lib tool test
91
89
- name : Check formatting
92
- run : dartfmt -n --set-exit-if-changed .
90
+ run : dart format -o none --set-exit-if-changed .
93
91
94
92
sanity_checks :
95
93
name : Sanity checks
Original file line number Diff line number Diff line change
1
+ ## 1.5.6
2
+
3
+ * No user-visible changes.
4
+
1
5
## 1.5.5
2
6
3
7
* No user-visible changes.
Original file line number Diff line number Diff line change 1
1
name : sass_migrator
2
- version : 1.5.5
2
+ version : 1.5.6
3
3
description : A tool for running migrations on Sass files
4
4
homepage : https://github.com/sass/migrator
5
5
@@ -25,7 +25,7 @@ dependencies:
25
25
26
26
dev_dependencies :
27
27
archive : ^3.1.2
28
- cli_pkg : ^1.3.0
28
+ cli_pkg : ^2.1.2
29
29
crypto : ^3.0.1
30
30
grinder : ^0.9.0
31
31
http : ^0.13.1
Original file line number Diff line number Diff line change @@ -14,7 +14,11 @@ main(List<String> args) {
14
14
pkg.botEmail.value
= "[email protected] " ;
15
15
pkg.homebrewRepo.value = "sass/homebrew-sass" ;
16
16
pkg.homebrewFormula.value = "migrator.rb" ;
17
- pkg.jsRequires.value = {"fs" : "fs" , "os" : "os" , "path" : "path" };
17
+ pkg.jsRequires.value = [
18
+ pkg.JSRequire ('fs' ),
19
+ pkg.JSRequire ('os' ),
20
+ pkg.JSRequire ('path' )
21
+ ];
18
22
pkg.standaloneName.value = "sass-migrator" ;
19
23
pkg.githubUser.fn = () => Platform .environment["GH_USER" ]! ;
20
24
pkg.githubPassword.fn = () => Platform .environment["GH_TOKEN" ]! ;
You can’t perform that action at this time.
0 commit comments