mirror of
https://github.com/woocommerce/woocommerce.git
synced 2025-01-22 15:14:31 +08:00
614d98ff60
Also add contributor command and auto tagging to release-post-generator (#34608)
12 lines
252 B
TypeScript
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' );
|