var $ = require('jquery'); var owl = require('owl.carousel'); module.exports = function(selector){ return $(selector).owlCarousel(); }; owl('.owl-carousel'); In the console I see an error of the form: bundle.js:11899 Uncaught TypeError: Cannot read property 'fn' of undefined
How to do it right?