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 0b319fb commit 9144d42Copy full SHA for 9144d42
1 file changed
src/build.js
@@ -109,9 +109,12 @@ export default (opts = {}) => {
109
await buildLocale(opts);
110
await buildDeclaration(opts);
111
112
- errors ?
113
- printError('Error during building') :
+ if (errors) {
+ printError(`Error during building`);
114
+ console.error(err);
115
+ } else {
116
printRow('Building completed successfully!');
117
+ }
118
});
119
};
120
0 commit comments