Skip to content

Commit 03fc137

Browse files
author
Administrator
committed
fix publish
1 parent afa9860 commit 03fc137

File tree

6 files changed

+38
-2
lines changed

6 files changed

+38
-2
lines changed
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
import { scaffolderModule } from './module';
2+
export { createAnsibleControllerJobTemplateLaunchAction } from './launch';
3+
export default scaffolderModule;
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
import { DiscoveryApi } from '@backstage/core-plugin-api';
2+
import { RootConfigService } from '@backstage/backend-plugin-api';
3+
/**
4+
* Creates an `ansible-controller:job_template:launch` Scaffolder action.
5+
*
6+
* @remarks
7+
*
8+
* See {@link https://example.com} for more information.
9+
*
10+
* @public
11+
*/
12+
export declare function createAnsibleControllerJobTemplateLaunchAction(options: {
13+
discovery: DiscoveryApi;
14+
config: RootConfigService;
15+
}): import("@backstage/plugin-scaffolder-node").TemplateAction<{
16+
controller: string;
17+
job_template: string;
18+
extra_vars: any;
19+
}, import("@backstage/types").JsonObject>;
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
/**
2+
* A backend module that registers the action into the scaffolder
3+
*/
4+
export declare const scaffolderModule: import("@backstage/backend-plugin-api").BackendFeatureCompat;

dist-types/src/actions/index.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export * from './ansible-controller';

dist-types/src/index.d.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
/***/
2+
/**
3+
* The ansible-controller module for @backstage/plugin-scaffolder-backend.
4+
*
5+
* @packageDocumentation
6+
*/
7+
export * from './actions';
8+
import { BackendDynamicPluginInstaller } from '@backstage/backend-dynamic-feature-service';
9+
export declare const dynamicPluginInstaller: BackendDynamicPluginInstaller;

tsconfig.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"compilerOptions": {
3-
"outDir": "./dist-types",
3+
"outDir": "./dist-types/src",
44
"declaration": true,
5-
"declarationDir": "./dist-types",
5+
"declarationDir": "./dist-types/src",
66
"emitDeclarationOnly": true,
77
"skipLibCheck": true
88
}

0 commit comments

Comments
 (0)