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 92ffe40 commit 46dab3bCopy full SHA for 46dab3b
src/cli/commands/build.js
@@ -82,8 +82,9 @@ function buildToFile(compileOptions, startTime) {
82
utils.log()
83
utils.log(
84
emoji.go,
85
- 'Building...',
86
- colors.file(inputFileSimplePath || 'defaults: @base, @components and @utilities.')
+ ...(inputFileSimplePath
+ ? ['Building:', colors.file(inputFileSimplePath)]
87
+ : ['Building from default CSS...', colors.info('(No input file provided)')])
88
)
89
90
return compile(compileOptions).then(result => {
0 commit comments