angular/ngcc-validation

ngx-swiper-wrapper

mgechev opened this issue · 4 comments

Debug: Invalid entry-point /Users/mgechev/Projects/ngcc-validation/ngx-swiper-wrapper-ngcc/node_modules/ngx-swiper-wrapper. It is missing required dependencies:
 - swiper/dist/js/swiper.js

This is because the import into swiper is a deep import - changing import * as Swiper from 'swiper/dist/js/swiper.js'; to import * as Swiper from 'swiper; allows it to pass.

@petebacondarwin I changed in ngx-swiper-wrapper.es5.js file
import * as Swiper from 'swiper/dist/js/swiper.js'; to import * as Swiper from 'swiper; but error has not gone.

This issue has been resolved in Angular's master branch.