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.
25 lines
690 B
25 lines
690 B
9 months ago
|
// ignore_for_file: avoid_print
|
||
|
|
||
|
import 'dart:io' show File;
|
||
|
|
||
|
import 'package:path/path.dart' as path;
|
||
|
|
||
|
import './pub_get.dart' as pub_get show main;
|
||
|
import 'packages.dart' show repoPackages;
|
||
|
|
||
|
Future<void> main(List<String> args) async {
|
||
|
for (final package in repoPackages) {
|
||
|
await disable(packageDirectoryPath: package);
|
||
|
}
|
||
|
await pub_get.main([]);
|
||
|
print('Local development for all libraries has been disabled');
|
||
|
}
|
||
|
|
||
|
Future<void> disable({required String packageDirectoryPath}) async {
|
||
|
final pubspecOverridesFile =
|
||
|
File(path.join(packageDirectoryPath, 'pubspec_overrides.yaml'));
|
||
|
if (await pubspecOverridesFile.exists()) {
|
||
|
await pubspecOverridesFile.delete();
|
||
|
}
|
||
|
}
|