woocommerce/tools/release-post-generator/index.ts

17 lines
260 B
TypeScript
Raw Normal View History

/**
* External dependencies
*/
import dotenv from 'dotenv';
/**
* Internal dependencies
*/
import { program } from './program';
import './commands/release-post';
// Bootstrap environment variables.
dotenv.config();
// Start the program
program.parse();