I'm trying to import ui-select in my js file using yarn and webpack than import it in my module as follow.
import ngSanitize from 'angular-sanitize';
import uiselect from 'ui-select';
import 'ui-select/dist/select.css';
export default angular.module('app.module', [
/** ... **/
ngSanitize,
'ui.select'
/** ... **/
])
but When I check my generated css file I can see that the CSS was correctly imported however not the js.(there is no issue on my webpack config as I can see ngSanitize js codeon the generated vendor file)