sidekick_core 1.3.1 sidekick_core: ^1.3.1 copied to clipboard
Shared sidekick commands, plugin engine, migrations, templates and utilities for sidekick CLIs
sidekick_core #
This package is used by sidekick CLIs to gain access to those awesome features:
- Plugin engine
- Update migrations
- Templates for new projects and plugins
- Prebuild commands
AnalyzeCommand
- Dart analyzes the whole projectDartCommand
- Calls the Dart SDK embedded in Flutter SDK (default system)DepsCommand
- Gets dependencies for all packagesFlutterCommand
- Call the Flutter SDK associated with the project (default system)BashCommand
- Wraps a bash script and converts it to a Dart commandSidekickCommand
PluginsCommand
- To install and create pluginsUpdateCommand
- To update your CLI to the latest sidekick_core versionInstallGlobalCommand
- Makes the CLI available globallyRecompileCommand
- Recompiles the CLI in case it didn't detect changes automatically (path dependencies)
Usage #
import 'package:sidekick_core/sidekick_core.dart';
Future<void> main(List<String> args) async {
final runner = initializeSidekick(mainProjectPath: 'dev/integration_tests/flutter_gallery');
runner.addCommand(YourCommand());
runner.addCommand(SidekickCommand());
return await runner.run(args);
}
License #
Copyright 2023 phntm GmbH
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.