├── .github └── workflows │ └── dart.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── analysis_options.yaml ├── bin └── multipack.dart ├── lib ├── commands.dart ├── commands │ ├── analyze.dart │ ├── common.dart │ ├── exec.dart │ ├── fmt.dart │ ├── info.dart │ ├── pub.dart │ ├── pubspec.dart │ ├── pubspec │ │ ├── bump_alpha.dart │ │ ├── clean.dart │ │ ├── hard_override.dart │ │ ├── override.dart │ │ └── sync_versions.dart │ └── test.dart └── package.dart └── pubspec.yaml /.github/workflows/dart.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gql-dart/multipack/HEAD/.github/workflows/dart.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gql-dart/multipack/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gql-dart/multipack/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gql-dart/multipack/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gql-dart/multipack/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gql-dart/multipack/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /bin/multipack.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gql-dart/multipack/HEAD/bin/multipack.dart -------------------------------------------------------------------------------- /lib/commands.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gql-dart/multipack/HEAD/lib/commands.dart -------------------------------------------------------------------------------- /lib/commands/analyze.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gql-dart/multipack/HEAD/lib/commands/analyze.dart -------------------------------------------------------------------------------- /lib/commands/common.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gql-dart/multipack/HEAD/lib/commands/common.dart -------------------------------------------------------------------------------- /lib/commands/exec.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gql-dart/multipack/HEAD/lib/commands/exec.dart -------------------------------------------------------------------------------- /lib/commands/fmt.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gql-dart/multipack/HEAD/lib/commands/fmt.dart -------------------------------------------------------------------------------- /lib/commands/info.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gql-dart/multipack/HEAD/lib/commands/info.dart -------------------------------------------------------------------------------- /lib/commands/pub.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gql-dart/multipack/HEAD/lib/commands/pub.dart -------------------------------------------------------------------------------- /lib/commands/pubspec.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gql-dart/multipack/HEAD/lib/commands/pubspec.dart -------------------------------------------------------------------------------- /lib/commands/pubspec/bump_alpha.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gql-dart/multipack/HEAD/lib/commands/pubspec/bump_alpha.dart -------------------------------------------------------------------------------- /lib/commands/pubspec/clean.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gql-dart/multipack/HEAD/lib/commands/pubspec/clean.dart -------------------------------------------------------------------------------- /lib/commands/pubspec/hard_override.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gql-dart/multipack/HEAD/lib/commands/pubspec/hard_override.dart -------------------------------------------------------------------------------- /lib/commands/pubspec/override.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gql-dart/multipack/HEAD/lib/commands/pubspec/override.dart -------------------------------------------------------------------------------- /lib/commands/pubspec/sync_versions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gql-dart/multipack/HEAD/lib/commands/pubspec/sync_versions.dart -------------------------------------------------------------------------------- /lib/commands/test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gql-dart/multipack/HEAD/lib/commands/test.dart -------------------------------------------------------------------------------- /lib/package.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gql-dart/multipack/HEAD/lib/package.dart -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gql-dart/multipack/HEAD/pubspec.yaml --------------------------------------------------------------------------------