We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5519c40 commit 96eb784Copy full SHA for 96eb784
build/scripts/compile.js
@@ -30,8 +30,9 @@ const runWebpackCompiler = (webpackConfig) =>
30
const compile = () => Promise.resolve()
31
.then(() => logger.info('Starting compiler...'))
32
.then(() => {
33
- logger.info('Target application environment: ' + chalk.bold(project.env))
34
- logger.info(`PublicPath is ${project.publicPath}`)
+ logger.info(`Target application environment: ${chalk.bold(project.env)}`)
+ logger.info(`PublicPath: ${chalk.bold(project.publicPath)}`)
35
+ logger.info(`Sourcemaps: ${chalk.bold(project.sourcemaps)}`)
36
})
37
.then(() => runWebpackCompiler(webpackConfig))
38
.then((stats) => {
0 commit comments