arunoda / react-komposer

Feed data into React components by composing containers.
MIT License
732 stars 70 forks source link

Using Inferno, there is a name conflict with _unmounted #157

Open amadt opened 7 years ago

amadt commented 7 years ago

In compose.js we have

     componentWillUnmount() {
        this._unmounted = true;
        this._unsubscribe();
      }

Inferno actually is using the variable _unmounted in their code as well, and it's causing conflicts. What are the thoughts on trying to use a different scheme on _unmounted to make sure there isn't conflicts. Something like this._compose__unmounted?