aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorLibravatar Kristóf Marussy <kristof@marussy.com>2022-03-30 21:55:17 +0200
committerLibravatar Kristóf Marussy <kristof@marussy.com>2022-05-16 00:54:58 +0200
commit3248fed6e57b7986596e21197a9583b3770fac2a (patch)
treee417f4315d4f6d2a61109ab29aac0bcb487908bd /scripts
parentfeat(renderer): Renderer translations (diff)
downloadsophie-3248fed6e57b7986596e21197a9583b3770fac2a.tar.gz
sophie-3248fed6e57b7986596e21197a9583b3770fac2a.tar.zst
sophie-3248fed6e57b7986596e21197a9583b3770fac2a.zip
chore(deps): Bump but keep from react 18 for now
We need mui and mobx-react-like support before we can upgrade. See https://github.com/mobxjs/mobx/issues/2526 for discussion about the ramifications of concurrent rendering for mobx. Signed-off-by: Kristóf Marussy <kristof@marussy.com>
Diffstat (limited to 'scripts')
-rw-r--r--scripts/watch.js6
1 files changed, 6 insertions, 0 deletions
diff --git a/scripts/watch.js b/scripts/watch.js
index be05f2b..7c9a4fe 100644
--- a/scripts/watch.js
+++ b/scripts/watch.js
@@ -29,6 +29,12 @@ const stderrIgnorePatterns = [
29 // GPU sandbox error with the mesa GLSL cache 29 // GPU sandbox error with the mesa GLSL cache
30 // https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=918433 30 // https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=918433
31 /InitializeSandbox\(\) called with multiple threads in process gpu-process/, 31 /InitializeSandbox\(\) called with multiple threads in process gpu-process/,
32 // Very spammy GPU error reporting
33 // https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=901831
34 /GetVSyncParametersIfAvailable\(\) failed/,
35 // Does not seem to occur in production
36 // https://github.com/electron/electron/issues/32133#issuecomment-1079916988
37 /(sandbox_bundle\.js script failed to run|object null is not iterable).+ node:electron\/js2c\/sandbox_bundle \(160\)$/,
32]; 38];
33 39
34/** 40/**