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:
8383 steps :
8484 - uses : actions/checkout@v2
8585 - uses : dart-lang/setup-dart@v1
86- # TODO(jathak): Use the latest Dart when dart-lang/sdk#45488
87- with : {sdk: 2.12.4}
8886 - run : dart pub get
8987 - name : Analyze dart
90- run : dartanalyzer --fatal-warnings --fatal-infos lib tool test
88+ run : dart analyze --fatal-warnings --fatal-infos lib tool test
9189 - name : Check formatting
92- run : dartfmt -n --set-exit-if-changed .
90+ run : dart format -o none --set-exit-if-changed .
9391
9492 sanity_checks :
9593 name : Sanity checks
Original file line number Diff line number Diff line change 1+ ## 1.5.6
2+
3+ * No user-visible changes.
4+
15## 1.5.5
26
37* No user-visible changes.
Original file line number Diff line number Diff line change 11name : sass_migrator
2- version : 1.5.5
2+ version : 1.5.6
33description : A tool for running migrations on Sass files
44homepage : https://github.com/sass/migrator
55
@@ -25,7 +25,7 @@ dependencies:
2525
2626dev_dependencies :
2727 archive : ^3.1.2
28- cli_pkg : ^1.3.0
28+ cli_pkg : ^2.1.2
2929 crypto : ^3.0.1
3030 grinder : ^0.9.0
3131 http : ^0.13.1
Original file line number Diff line number Diff line change @@ -14,7 +14,11 @@ main(List<String> args) {
1414 pkg.botEmail.value = "sass.bot.beep.boop@gmail.com" ;
1515 pkg.homebrewRepo.value = "sass/homebrew-sass" ;
1616 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+ ];
1822 pkg.standaloneName.value = "sass-migrator" ;
1923 pkg.githubUser.fn = () => Platform .environment["GH_USER" ]! ;
2024 pkg.githubPassword.fn = () => Platform .environment["GH_TOKEN" ]! ;
You can’t perform that action at this time.
0 commit comments