@babel/plugin-proposal-class-properties breaks reload, logging
See original GitHub issueSummary
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
- Clone
yarn && yarn start
- Open App.tsx, observe
console.log
in component, but missing in terminal log output - Edit
App.tsx
, observe no automatic reload
Issue Analytics
- State:
- Created 2 years ago
- Reactions:1
- Comments:6 (3 by maintainers)
Top 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 >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
I managed to find a solution for this here:
Tysm @saevarb you literally saved me hours and hours. You’re the best!