Skip to content

Commit

Permalink
upgrade: flutter 3.24.2 (#155)
Browse files Browse the repository at this point in the history
  • Loading branch information
ronnnnn committed Sep 5, 2024
1 parent d0a723f commit dffe6ff
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 27 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ jobs:
- name: Setup Flutter
uses: ./.github/actions/setup-flutter
- name: Check format
run: melos pretty:dry
run: melos fmt:dry
- name: Analyze
run: melos check
run: melos lint

test:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -56,4 +56,4 @@ jobs:
- name: Setup Flutter
uses: ./.github/actions/setup-flutter
- name: Build example iOS
run: melos build:example:ios
run: melos build:example:ios
6 changes: 3 additions & 3 deletions .tool-versions
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
dart 3.5.1
flutter 3.24.1
java temurin-17.0.12+7
dart 3.5.2
flutter 3.24.2
java temurin-17.0.12+7
4 changes: 2 additions & 2 deletions examples/nilts_example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -429,5 +429,5 @@ packages:
source: hosted
version: "3.1.2"
sdks:
dart: "3.5.1"
flutter: ">=3.24.1"
dart: "3.5.2"
flutter: ">=3.24.2"
4 changes: 2 additions & 2 deletions examples/nilts_example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ description: A new Flutter project.
publish_to: 'none'

environment:
sdk: 3.5.1
flutter: 3.24.1
sdk: 3.5.2
flutter: 3.24.2

dependencies:
flutter:
Expand Down
34 changes: 17 additions & 17 deletions melos.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,42 +43,42 @@ scripts:
run: melos exec -c 1 --fail-fast -- flutter pub get
description: pub get

check:
lint:
run: |
melos check:dart && \
melos check:flutter && \
melos check:custom_lint
description: check static analysis
melos lint:dart && \
melos lint:flutter && \
melos lint:custom_lint
description: lint

check:dart:
lint:dart:
run: melos exec -c 1 --scope="nilts" -- dart analyze --fatal-infos --fatal-warnings
description: check static analysis for dart
description: lint with dart

check:flutter:
lint:flutter:
run: melos exec -c 1 --scope="nilts_test" -- flutter analyze --fatal-infos --fatal-warnings
description: check static analysis for flutter
description: lint with flutter

check:custom_lint:
lint:custom_lint:
run: melos exec -c 1 --scope="nilts_test" -- flutter pub run custom_lint
description: check static analysis with custom_lint
description: lint with custom_lint

pretty:
fmt:
run: |
melos fix && \
melos pretty:dart
melos fmt:dart
description: format

pretty:dry:
fmt:dry:
run: |
melos fix:dry && \
melos pretty:dart:dry
melos fmt:dart:dry
description: format (dry-run)

pretty:dart:
fmt:dart:
run: melos exec -c 1 --fail-fast -- dart format .
description: format dart

pretty:dart:dry:
fmt:dart:dry:
run: melos exec -c 1 --fail-fast -- dart format --set-exit-if-changed .
description: format dart (dry-run)

Expand Down

0 comments on commit dffe6ff

Please sign in to comment.