Closed fernandojsg closed 8 years ago
Before we were exporting DEFAULT_COMPONENTS in CommonComponents.js this generates and odd error due to circular dependencies when importing INSPECTOR in TextureWidget.js. I've fixed it by moving DEFAULT_COMPONENTS to a new file DefaultComponents.js.
DEFAULT_COMPONENTS
CommonComponents.js
INSPECTOR
TextureWidget.js
DefaultComponents.js
yeah with circ deps, you have to decouple or else it'll return null on require
Before we were exporting
DEFAULT_COMPONENTS
inCommonComponents.js
this generates and odd error due to circular dependencies when importingINSPECTOR
inTextureWidget.js
. I've fixed it by movingDEFAULT_COMPONENTS
to a new fileDefaultComponents.js
.