@h-rig/standard-plugin 0.0.6-alpha.154 → 0.0.6-alpha.156

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,7 +1,8 @@
1
- import type { RigPluginWithRuntime } from "@rig/core/config";
2
- import { type DocsDriftPluginOptions, type StandardTaskSourcesPluginOptions } from "./plugin";
1
+ import { type DocsDriftPluginOptions } from "@rig/docs-drift-plugin/plugin";
2
+ import type { RigPlugin } from "@rig/core/config";
3
+ import { type StandardTaskSourcesPluginOptions } from "./plugin";
3
4
  export type StandardPluginsOptions = {
4
5
  readonly taskSources?: StandardTaskSourcesPluginOptions | undefined;
5
6
  readonly drift?: DocsDriftPluginOptions | undefined;
6
7
  };
7
- export declare function standardPlugins(options?: StandardPluginsOptions): readonly RigPluginWithRuntime[];
8
+ export declare function standardPlugins(options?: StandardPluginsOptions): readonly RigPlugin[];