I'm encountering the following error when trying to use the store and related coroutine based implementations of the mvikotlin-extensions-coroutines package on a JS browser target.
ReferenceError: observer$ObjectLiteral is not defined
Both with my project and with the sample Todo project the issue is met. The easiest way to reproduce the error is executing the browserDevelopmentRun task after changing the FrameworkType from REAKTIVE to COROUTINES on the todo-app-js module
val mFrameworkType: FrameworkType = FrameworkType.COROUTINES inside todo-app-js/src/main/kotlin/Util.kt
This is the console log of the web browser for the error
Both with the sample todo-app-js module and with a store implementation based on mvikotlin-extensions-reaktive for my project no error is thrown and web app seems to work just fine
Hi,
I'm encountering the following error when trying to use the store and related coroutine based implementations of the mvikotlin-extensions-coroutines package on a JS browser target.
ReferenceError: observer$ObjectLiteral is not defined
Both with my project and with the sample Todo project the issue is met. The easiest way to reproduce the error is executing the
browserDevelopmentRun
task after changing theFrameworkType
fromREAKTIVE
toCOROUTINES
on thetodo-app-js
moduleval mFrameworkType: FrameworkType = FrameworkType.COROUTINES
insidetodo-app-js/src/main/kotlin/Util.kt
This is the console log of the web browser for the error
Both with the sample
todo-app-js
module and with a store implementation based onmvikotlin-extensions-reaktive
for my project no error is thrown and web app seems to work just fine