woocommerce/tools/release-posts/program.ts
Sam Seay 614d98ff60
Extract the scanning functionality from code-analyzer, move common code into a separate package (#34600)
Also add contributor command and auto tagging to release-post-generator (#34608)
2022-09-11 09:55:53 +12:00

12 lines
252 B
TypeScript

/**
* External dependencies
*/
import { Command } from '@commander-js/extra-typings';
export const program = new Command();
program
.name( 'post' )
.description( 'CLI to automate generation of posts for beta and release.' )
.version( '0.0.1' );