2023-04-11 21:26:21 +00:00
|
|
|
/**
|
|
|
|
* External dependencies
|
|
|
|
*/
|
|
|
|
import { Command } from '@commander-js/extra-typings';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Internal dependencies
|
|
|
|
*/
|
|
|
|
import CodeFreeze from './code-freeze/commands';
|
|
|
|
|
2023-04-12 19:10:02 +00:00
|
|
|
export const program = new Command()
|
2023-04-11 21:26:21 +00:00
|
|
|
.name( 'utils' )
|
|
|
|
.description( 'Monorepo utilities' )
|
|
|
|
.addCommand( CodeFreeze );
|