chaostoolkit-kubernetes
chaostoolkit-kubernetes copied to clipboard
Embroider | Cannot destructure property 'createStore' of 'redux__WEBPACK_IMPORTED_MODULE_0__.default'
ember-cli
allows for not-to-spec import
behaviors
https://github.com/ember-redux/ember-redux/blob/a2555383a2d8c9eb380674569dad24c5aa64caf2/addon/services/redux.js#L5
This line behave as import * as redux from 'redux'
, when it should only be importing the default
export. This behavior is being corrected with the new embroider build process
https://github.com/ember-redux/ember-redux/blob/a2555383a2d8c9eb380674569dad24c5aa64caf2/addon/services/redux.js#L19
Currently, this line is throwing an exception because there is no default
export from redux so you cannot desctructure it.
This breaks our embroider build and I would very much appreciate solving this issue.