Currently the logic that inventories class names from the parent project is limited to looking for export default class [className]. This logic should be improved to detect any instance of a class name in a js file, even when export default is not being used. Maybe we should be using an AST for this??
Currently the logic that inventories class names from the parent project is limited to looking for
export default class [className]
. This logic should be improved to detect any instance of a class name in a js file, even when export default is not being used. Maybe we should be using an AST for this??