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 6ea17c9 commit 5793b91Copy full SHA for 5793b91
packages/@vue/cli-service/lib/commands/build/index.js
@@ -145,7 +145,11 @@ module.exports = (api, options) => {
145
)
146
log(formatStats(stats, targetDirShort, api))
147
if (args.target === 'app') {
148
- done(`Build complete. The ${chalk.cyan(targetDirShort)} directory is ready to be deployed.\n`)
+ if (!args.watch) {
149
+ done(`Build complete. The ${chalk.cyan(targetDirShort)} directory is ready to be deployed.\n`)
150
+ } else {
151
+ done(`Build complete. Watching for changes...`)
152
+ }
153
if (
154
options.baseUrl === '/' &&
155
// only log the tips if this is the first build
0 commit comments