sidekick_plugin_installer 1.1.0 copy "sidekick_plugin_installer: ^1.1.0" to clipboard
sidekick_plugin_installer: ^1.1.0 copied to clipboard

Helpers for plugin installers to easily install themselves into a sidekick cli

Sidekick Plugin Installer #

Contains high level helper methods around analyzer useful for plugin authors. The methods can be used in the tool/install.dart script to actually integrate your plugin code in to the sidekick CLI.

Example #

import 'package:sidekick_core/sidekick_core.dart';
import 'package:sidekick_plugin_installer/sidekick_plugin_installer.dart';

Future<void> main() async {
  final SidekickPackage package = PluginContext.sidekickPackage;

  addSelfAsDependency();
  pubGet(package);

  registerPlugin(
    sidekickCli: package,
    import: "import 'package:my_sidekick_plugin/my_sidekick_plugin.dart';",
    command: 'MyCommand()',
  );
}

License #

Copyright 2022 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.
0
likes
130
pub points
18%
popularity

Publisher

verified publisherphntm.xyz

Helpers for plugin installers to easily install themselves into a sidekick cli

Repository (GitHub)
View/report issues

Topics

#sidekick #cli

Documentation

API reference

License

Apache-2.0 (LICENSE)

Dependencies

analyzer, dcli, sidekick_core

More

Packages that depend on sidekick_plugin_installer