mirror of
https://github.com/element-hq/element-web
synced 2024-11-21 16:55:34 +03:00
Fix develop build. Use console.warn
instead of an undefined compilation
object.
This commit is contained in:
parent
627377229c
commit
6e8f0f6f6d
1 changed files with 2 additions and 2 deletions
|
@ -714,8 +714,8 @@ module.exports = (env, argv) => {
|
|||
sourcemaps: {
|
||||
paths: "./webapp/bundles/**",
|
||||
},
|
||||
errorHandler: (err, invokeErr, compilation) => {
|
||||
compilation.warnings.push("Sentry CLI Plugin: " + err.message);
|
||||
errorHandler: (err) => {
|
||||
console.warn("Sentry CLI Plugin: " + err.message);
|
||||
console.log(`::warning title=Sentry error::${err.message}`);
|
||||
},
|
||||
}),
|
||||
|
|
Loading…
Reference in a new issue