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 6908166 commit aad2523Copy full SHA for aad2523
packages/snaps-execution-environments/scripts/build.js
@@ -1,4 +1,3 @@
1
-const chalk = require('chalk');
2
const webpack = require('webpack');
3
4
const config = require('../webpack.config');
@@ -20,12 +19,10 @@ function indent(message, spaces = 2) {
20
19
webpack(config, (error, stats) => {
21
if (error) {
22
console.error(
23
- chalk.red(
24
- 'Webpack failed to build. See the error(s) below for more details.',
25
- ),
+ 'Webpack failed to build. See the error(s) below for more details.',
26
);
27
28
- console.log(indent(chalk.red(error.message), 2));
+ console.log(indent(error.message, 2));
29
return;
30
}
31
0 commit comments