Commit 9383f3e4 authored by Mark Banner's avatar Mark Banner
Browse files

Bug 1725934 - Remove unnecessary babel plugin, and update node modules to the...

Bug 1725934 - Remove unnecessary babel plugin, and update node modules to the latest versions. r=Mardak

plugin-syntax-class-properties was supported by default in Babel 7.14.0.
This also adds top level await support in modules with the upgrade to Babel 7.15.0.

Differential Revision: https://phabricator.services.mozilla.com/D122865
parent f6115a7b
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -4,7 +4,6 @@

module.exports = {
  plugins: [
    "@babel/plugin-syntax-class-properties",
    "@babel/plugin-syntax-jsx",
  ],
};
+2 −0
Original line number Diff line number Diff line
@@ -129,6 +129,8 @@ add_task(async function() {
  EventUtils.synthesizeKey("x");
  await waitForTime(5);
  EventUtils.synthesizeKey("KEY_Enter");
  // TODO: Bug 1726037.
  // eslint-disable-next-line no-sequences
  await Promise.all[(onPopupClosed, onMessage)];
  is(
    getInputValue(hud),
Loading