@h-rig/standard-plugin 0.0.6-alpha.142 → 0.0.6-alpha.144

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.
@@ -0,0 +1 @@
1
+ export { BLOCKERS_CLI_ID, BLOCKER_CLASSIFIER_PLUGIN_NAME, DEFAULT_BLOCKER_CLASSIFIER_ID, HUMAN_BLOCKERS_PANEL_ID, blockerClassifierPlugin, createBlockerClassifierPlugin, } from "@rig/blocker-classifier-plugin/plugin";
@@ -0,0 +1,18 @@
1
+ // @bun
2
+ // packages/standard-plugin/src/blocker-classifier.ts
3
+ import {
4
+ BLOCKERS_CLI_ID,
5
+ BLOCKER_CLASSIFIER_PLUGIN_NAME,
6
+ DEFAULT_BLOCKER_CLASSIFIER_ID,
7
+ HUMAN_BLOCKERS_PANEL_ID,
8
+ blockerClassifierPlugin,
9
+ createBlockerClassifierPlugin
10
+ } from "@rig/blocker-classifier-plugin/plugin";
11
+ export {
12
+ createBlockerClassifierPlugin,
13
+ blockerClassifierPlugin,
14
+ HUMAN_BLOCKERS_PANEL_ID,
15
+ DEFAULT_BLOCKER_CLASSIFIER_ID,
16
+ BLOCKER_CLASSIFIER_PLUGIN_NAME,
17
+ BLOCKERS_CLI_ID
18
+ };
@@ -1,6 +1,7 @@
1
- import type { RigPluginWithRuntime } from "@rig/core";
2
- import { type StandardPluginOptions } from "./plugin";
3
- export type StandardProjectPluginsOptions = {
4
- readonly standard?: StandardPluginOptions | undefined;
1
+ import type { RigPluginWithRuntime } from "@rig/core/config";
2
+ import { type DocsDriftPluginOptions, type StandardTaskSourcesPluginOptions } from "./plugin";
3
+ export type StandardPluginsOptions = {
4
+ readonly taskSources?: StandardTaskSourcesPluginOptions | undefined;
5
+ readonly drift?: DocsDriftPluginOptions | undefined;
5
6
  };
6
- export declare function standardProjectPlugins(options?: StandardProjectPluginsOptions): readonly RigPluginWithRuntime[];
7
+ export declare function standardPlugins(options?: StandardPluginsOptions): readonly RigPluginWithRuntime[];