Skip to content

Commit 681c58c

Browse files
📝 Add docstrings to feature/ticket-summary-block
Docstrings generation was requested by @michnowak. * #357 (comment) The following files were modified: * `turbo/generators/config.ts`
1 parent cd62aec commit 681c58c

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

turbo/generators/config.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
import type { PlopTypes } from '@turbo/gen';
22

3+
/**
4+
* Registers the "integration" and "block" Plop generators used to scaffold integrations and blocks.
5+
*
6+
* @param plop - The Plop API instance used to define generators and their prompts/actions
7+
*/
38
export default function generator(plop: PlopTypes.NodePlopAPI): void {
49
plop.setGenerator('integration', {
510
description: 'Adds a new API integration',
@@ -334,4 +339,4 @@ export default function generator(plop: PlopTypes.NodePlopAPI): void {
334339
},
335340
],
336341
});
337-
}
342+
}

0 commit comments

Comments
 (0)