We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f9ff048 commit 4cb3211Copy full SHA for 4cb3211
1 file changed
packages/create-guten-block/app/run.js
@@ -26,7 +26,10 @@ module.exports = async() => {
26
// 1. Set the CLI and get the blockName.
27
const { blockName, isCanary } = cli();
28
29
- isCanary && chalk.dim(`\n ⚠️ THIS IS THE CANARY MODE FOR DEV TESTING\n`),
+ // 1.1 If we are testing in dev mode then notify.
30
+ if ( isCanary ) {
31
+ console.log( chalk.dim( '\n ⚠️ THIS IS THE CANARY MODE FOR DEV TESTING\n' ) );
32
+ }
33
34
// 2. Build the block directory path.
35
const blockDir = await getBlockDir( blockName );
0 commit comments