We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fd2741a commit 64a8d8dCopy full SHA for 64a8d8d
1 file changed
packages/cgb-scripts/scripts/start.js
@@ -87,9 +87,15 @@ async function build( webpackConfig ) {
87
88
clearConsole();
89
console.log( '\n✅ ', chalk.black.bgGreen( ' Compiled successfully! \n' ) );
90
- return console.log(
+ console.log(
91
chalk.dim( ' Watching for changes... (Press CTRL + C to stop). \n\n' )
92
);
93
+ return console.log(
94
+ chalk.dim( ' Note that the development build is not optimized. \n' ),
95
+ chalk.dim( 'To create a production build, use' ),
96
+ chalk.green( 'npm' ),
97
+ chalk.white( 'run build' )
98
+ );
99
} );
100
}
101
0 commit comments