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.
(cherry picked from commit 23b51a1708
)
This commit is contained in:
parent
e4df8a68fa
commit
74cf62bb68
|
@ -39,5 +39,13 @@ module.exports = {
|
||||||
// Closure compiler (exported properties)
|
// Closure compiler (exported properties)
|
||||||
"quote-props": ["error", "consistent"],
|
"quote-props": ["error", "consistent"],
|
||||||
"dot-notation": "off",
|
"dot-notation": "off",
|
||||||
|
// No comma dangle for functions (it's madness, and ES2017)
|
||||||
|
"comma-dangle": ["error", {
|
||||||
|
"arrays": "always-multiline",
|
||||||
|
"objects": "always-multiline",
|
||||||
|
"imports": "always-multiline",
|
||||||
|
"exports": "always-multiline",
|
||||||
|
"functions": "never"
|
||||||
|
}],
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
|
@ -218,7 +218,7 @@ const GodotAudioWorklet = {
|
||||||
'godot-processor',
|
'godot-processor',
|
||||||
{
|
{
|
||||||
'outputChannelCount': [channels],
|
'outputChannelCount': [channels],
|
||||||
},
|
}
|
||||||
);
|
);
|
||||||
return Promise.resolve();
|
return Promise.resolve();
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue