Skip to content

Commit de2b656

Browse files
authored
chore: Use melos globs for workspace resolution, bump versions (#3950)
Use melos globs for workspace resolution and bump versions
1 parent ee0395a commit de2b656

125 files changed

Lines changed: 287 additions & 426 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/cicd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99

1010

1111
env:
12-
FLUTTER_MIN_VERSION: '3.41.0'
12+
FLUTTER_MIN_VERSION: '3.44.0'
1313

1414
jobs:
1515
# BEGIN LINTING STAGE

doc/flame/examples/lib/ember.dart

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,8 @@ class EmberPlayer extends SpriteAnimationComponent with TapCallbacks {
77
EmberPlayer({
88
required super.size,
99
super.position,
10-
void Function(EmberPlayer player)? onTap,
11-
}) : _onTap = onTap,
12-
super();
10+
this._onTap,
11+
});
1312

1413
Vector2 velocity = Vector2(0, 0);
1514
final void Function(EmberPlayer player)? _onTap;

doc/flame/examples/lib/flower.dart

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,10 @@ class Flower extends PositionComponent
1111
with TapCallbacks, HasPaint<FlowerPaint> {
1212
Flower({
1313
required double size,
14-
void Function(Flower)? onTap,
14+
this._onTap,
1515
Decorator? decorator,
1616
super.position,
17-
}) : _onTap = onTap,
18-
super(size: Vector2.all(size), anchor: Anchor.center) {
17+
}) : super(size: Vector2.all(size), anchor: Anchor.center) {
1918
this.decorator.addLast(decorator);
2019
final radius = size * 0.38;
2120
_paths.add(_makePath(radius * 1.4, 6, -0.05, 0.8));

doc/flame/examples/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ version: 1.0.0
55
publish_to: none
66

77
environment:
8-
sdk: ">=3.11.0 <4.0.0"
9-
flutter: ">=3.41.0"
8+
sdk: ">=3.12.0 <4.0.0"
9+
flutter: ">=3.44.0"
1010

1111
dependencies:
1212
flame: ^1.38.0

doc/tutorials/klondike/app/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ version: 1.0.0
55
publish_to: none
66

77
environment:
8-
sdk: ">=3.11.0 <4.0.0"
8+
sdk: ">=3.12.0 <4.0.0"
99

1010
dependencies:
1111
flame: ^1.38.0

doc/tutorials/platformer/app/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev
55
version: 1.0.0+1
66

77
environment:
8-
sdk: ">=3.11.0 <4.0.0"
9-
flutter: ">=3.41.0"
8+
sdk: ">=3.12.0 <4.0.0"
9+
flutter: ">=3.44.0"
1010

1111
dependencies:
1212
flame: ^1.38.0

doc/tutorials/space_shooter/app/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ publish_to: 'none'
77
version: 1.0.0+1
88

99
environment:
10-
sdk: ">=3.11.0 <4.0.0"
10+
sdk: ">=3.12.0 <4.0.0"
1111

1212
dependencies:
1313
flame: ^1.38.0

examples/games/crystal_ball/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ publish_to: 'none'
55
version: "0.1.0"
66

77
environment:
8-
sdk: ">=3.11.0 <4.0.0"
9-
flutter: ">=3.41.0"
8+
sdk: ">=3.12.0 <4.0.0"
9+
flutter: ">=3.44.0"
1010

1111
dependencies:
1212
flame: ^1.38.0

examples/games/padracing/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ publish_to: 'none'
55
version: 1.0.0+1
66

77
environment:
8-
sdk: ">=3.11.0 <4.0.0"
8+
sdk: ">=3.12.0 <4.0.0"
99

1010
dependencies:
1111
collection: ^1.17.1

examples/games/rogue_shooter/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ publish_to: 'none'
77
version: 0.1.0
88

99
environment:
10-
sdk: ">=3.11.0 <4.0.0"
11-
flutter: ">=3.41.0"
10+
sdk: ">=3.12.0 <4.0.0"
11+
flutter: ">=3.44.0"
1212

1313
dependencies:
1414
flame: ^1.38.0

0 commit comments

Comments
 (0)