HTML5: Fix minification error with Emscripten 1.39.9

It used an old vendored version of acorn.js which seems to choke on this
trailing comma. This is not a problem for more recent Emscripten versions.

We disable the `comma-dangle` check in ESLint to prevent this issue.
This commit is contained in:
Rémi Verschelde 2021-09-22 09:40:54 +02:00
parent ad635567b1
commit 23b51a1708
No known key found for this signature in database
GPG key ID: C3336907360768E1
2 changed files with 9 additions and 1 deletions

View file

@ -229,7 +229,7 @@ const GodotAudioWorklet = {
'godot-processor',
{
'outputChannelCount': [channels],
},
}
);
return Promise.resolve();
});