@h-rig/standard-plugin 0.0.6-alpha.141 → 0.0.6-alpha.143
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.
- package/dist/src/bundle.d.ts +6 -5
- package/dist/src/bundle.js +1693 -1300
- package/dist/src/cli-surface.d.ts +4 -0
- package/dist/src/cli-surface.js +21 -0
- package/dist/src/drift/metadata.d.ts +13 -0
- package/dist/src/drift/metadata.js +33 -0
- package/dist/src/drift/plugin.d.ts +4 -14
- package/dist/src/drift/plugin.js +4 -5
- package/dist/src/github-issues-source.js +52 -20
- package/dist/src/index.d.ts +0 -2
- package/dist/src/index.js +1657 -1414
- package/dist/src/lifecycle-closeout.d.ts +2 -0
- package/dist/src/lifecycle-closeout.js +6 -0
- package/dist/src/plugin.d.ts +8 -11
- package/dist/src/plugin.js +1657 -1397
- package/dist/src/product-entrypoint.d.ts +11 -0
- package/dist/src/product-entrypoint.js +101 -0
- package/dist/src/run-worker-panels.d.ts +15 -0
- package/dist/src/run-worker-panels.js +53 -0
- package/package.json +24 -8
package/dist/src/bundle.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import type { RigPluginWithRuntime } from "@rig/core";
|
|
2
|
-
import { type
|
|
3
|
-
export type
|
|
4
|
-
readonly
|
|
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
|
|
7
|
+
export declare function standardPlugins(options?: StandardPluginsOptions): readonly RigPluginWithRuntime[];
|