Skip to content

Commit 2fb8f44

Browse files
authored
Bump cli_pkg version (#224)
1 parent 6bd6ad6 commit 2fb8f44

File tree

4 files changed

+13
-7
lines changed

4 files changed

+13
-7
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff 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

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 1.5.6
2+
3+
* No user-visible changes.
4+
15
## 1.5.5
26

37
* No user-visible changes.

pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: sass_migrator
2-
version: 1.5.5
2+
version: 1.5.6
33
description: A tool for running migrations on Sass files
44
homepage: https://github.com/sass/migrator
55

@@ -25,7 +25,7 @@ dependencies:
2525

2626
dev_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

tool/grind.dart

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,11 @@ main(List<String> args) {
1414
pkg.botEmail.value = "[email protected]";
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"]!;

0 commit comments

Comments
 (0)