create-guten-block
Version:
Create a WordPress Gutenberg Block plugin with Zero-Config #OCJS, Webpack, React, ES6/7/8/Next, ESLint, Babel, and more.
24 lines (20 loc) • 542 B
JavaScript
/**
* Handle if there's no block name.
*/
;
const chalk = require( 'chalk' );
module.exports = () => {
// Stop if there's no block name to create the plugin dir.
console.log(
'\n❌ ',
chalk.black.bgRed( ' You forgot to specify a block name: \n' )
);
console.log(
` ${ chalk.dim( 'create-guten-block' ) } ${ chalk.green( '<block-name>' ) }`
);
console.log( chalk.dim( '\nFor example: \n' ) );
console.log(
` ${ chalk.dim( 'create-guten-block' ) } ${ chalk.green( 'my-block' ) }\n`
);
process.exit( 1 );
};