Skip to content

Commit

Permalink
Bump cli_pkg version (#224)
Browse files Browse the repository at this point in the history
  • Loading branch information
jathak authored Jun 17, 2022
1 parent 6bd6ad6 commit 2fb8f44
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 7 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,13 +83,11 @@ jobs:
steps:
- uses: actions/checkout@v2
- uses: dart-lang/setup-dart@v1
# TODO(jathak): Use the latest Dart when dart-lang/sdk#45488
with: {sdk: 2.12.4}
- run: dart pub get
- name: Analyze dart
run: dartanalyzer --fatal-warnings --fatal-infos lib tool test
run: dart analyze --fatal-warnings --fatal-infos lib tool test
- name: Check formatting
run: dartfmt -n --set-exit-if-changed .
run: dart format -o none --set-exit-if-changed .

sanity_checks:
name: Sanity checks
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.5.6

* No user-visible changes.

## 1.5.5

* No user-visible changes.
Expand Down
4 changes: 2 additions & 2 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: sass_migrator
version: 1.5.5
version: 1.5.6
description: A tool for running migrations on Sass files
homepage: https://github.com/sass/migrator

Expand All @@ -25,7 +25,7 @@ dependencies:

dev_dependencies:
archive: ^3.1.2
cli_pkg: ^1.3.0
cli_pkg: ^2.1.2
crypto: ^3.0.1
grinder: ^0.9.0
http: ^0.13.1
Expand Down
6 changes: 5 additions & 1 deletion tool/grind.dart
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,11 @@ main(List<String> args) {
pkg.botEmail.value = "[email protected]";
pkg.homebrewRepo.value = "sass/homebrew-sass";
pkg.homebrewFormula.value = "migrator.rb";
pkg.jsRequires.value = {"fs": "fs", "os": "os", "path": "path"};
pkg.jsRequires.value = [
pkg.JSRequire('fs'),
pkg.JSRequire('os'),
pkg.JSRequire('path')
];
pkg.standaloneName.value = "sass-migrator";
pkg.githubUser.fn = () => Platform.environment["GH_USER"]!;
pkg.githubPassword.fn = () => Platform.environment["GH_TOKEN"]!;
Expand Down

0 comments on commit 2fb8f44

Please sign in to comment.