question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

@babel/plugin-proposal-class-properties breaks reload, logging

See original GitHub issue

Summary

I was looking to use mobx in my expo project and followed these instructions: https://mobx.js.org/installation.html#use-spec-compliant-transpilation-for-class-properties.

Doing so seems to break hot reload as well as logging, at least to the terminal. You can still see log output if you run adb logcat.

Managed or bare workflow? If you have ios/ or android/ directories in your project, the answer is bare!

managed

What platform(s) does this occur on?

Android

SDK Version (managed workflow only)

44

Environment


  expo-env-info 1.0.2 environment info:
    System:
      OS: Linux 5.16 Arch Linux
      Shell: 5.8.1 - /bin/zsh
    Binaries:
      Node: 16.14.0 - ~/.volta/tools/image/node/16.14.0/bin/node
      Yarn: 1.22.17 - ~/.volta/tools/image/yarn/1.22.17/bin/yarn
      npm: 8.3.1 - ~/.volta/tools/image/node/16.14.0/bin/npm
      Watchman: 20220227.015527.0 - /usr/bin/watchman
    IDEs:
      Android Studio: AI-211.7628.21.2111.8139111
    npmPackages:
      expo: ~44.0.0 => 44.0.5 
      react: 17.0.1 => 17.0.1 
      react-dom: 17.0.1 => 17.0.1 
      react-native: 0.64.3 => 0.64.3 
      react-native-web: 0.17.1 => 0.17.1 
    Expo Workflow: managed

Reproducible demo

Repro here: https://github.com/saevarb/expo-babel-bug

  1. Clone
  2. yarn && yarn start
  3. Open App.tsx, observe console.log in component, but missing in terminal log output
  4. Edit App.tsx, observe no automatic reload

Issue Analytics

  • State:closed
  • Created 2 years ago
  • Reactions:1
  • Comments:6 (3 by maintainers)

github_iconTop GitHub Comments

3reactions
saevarbcommented, Mar 13, 2022

I managed to find a solution for this here:

// babel.config.js
module.exports = function(api) {
  api.cache(true);
  return {
    presets: ['babel-preset-expo'],
    overrides: [
      {
        test: fileName => !fileName.includes('node_modules'),
        plugins: [[require('@babel/plugin-proposal-class-properties'), { loose: false }]],
      },
    ],
  };
};
1reaction
MatthieuJnoncommented, Aug 13, 2022

Tysm @saevarb you literally saved me hours and hours. You’re the best!

Read more comments on GitHub >

github_iconTop Results From Across the Web

babel/plugin-proposal-class-properties
Below is a class with four class properties which will be transformed. class Bork { //Property initializer syntax instanceProperty = "bork"; boundFunction =...
Read more >
webpack Tutorial: How to Set Up webpack 5 From Scratch
Create a plugins property of your config and you'll add the plugin, filename to output ( index.html ), and link to the template...
Read more >
Redwood v0.31.0 - Releases and Upgrade Guides
In typical Redwood fashion, of course, it's one CLI command to get ... set to "true" for @babel/plugin-proposal-class-properties. api | The ...
Read more >
Untitled
Final - https://netty.io/netty-transport-classes-epoll/) (Apache License, Version 2.0) ... (MIT) @babel/plugin-proposal-class-properties@7.16.5 ...
Read more >
missing class properties transform - You.com | The AI Search ...
and add the following to your Babel configuration file - usually .babelrc or babel.config.js . "plugins": ["@babel/plugin-proposal-class-properties"],.
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found