dartlangeditorflutterflutter-appsflutter-examplesflutter-packageflutter-widgetquillquill-deltaquilljsreactquillrich-textrich-text-editorwysiwygwysiwyg-editor
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
331 B
17 lines
331 B
9 months ago
|
// ignore_for_file: avoid_print
|
||
|
|
||
|
import 'dart:io' show Process;
|
||
|
|
||
|
import 'packages.dart' show repoPackages;
|
||
|
|
||
|
Future<void> main(List<String> args) async {
|
||
|
for (final package in repoPackages) {
|
||
|
await Process.run(
|
||
|
'flutter',
|
||
|
['pub', 'get'],
|
||
|
workingDirectory: package,
|
||
|
);
|
||
|
}
|
||
|
print('Got dependencies!');
|
||
|
}
|