We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c942086 commit 3c95719Copy full SHA for 3c95719
CHANGELOG.md
@@ -1,3 +1,7 @@
1
+## 0.3.2
2
+
3
+- support latest release of 'graphs'
4
5
## 0.3.0
6
7
- null safety
lib/commands/common.dart
@@ -72,12 +72,8 @@ abstract class PassthroughCommand extends MultipackCommand {
72
ArgParser argParser = ArgParser.allowAnything();
73
74
PassthroughCommand(
75
- String name,
76
- String description,
77
- List<Package> packages,
78
- ) : super(
79
- name,
80
- description,
81
- packages,
82
- );
+ super.name,
+ super.description,
+ super.packages,
+ );
83
}
pubspec.yaml
@@ -1,5 +1,5 @@
name: multipack
-version: 0.3.2
+version: 0.3.2+1
homepage: https://github.com/gql-dart/multipack
description: A tool for monorepo management. Link local packages and execute commands in topological order.
environment:
0 commit comments