I'm using Gulp and Browserify for my build process, except I'm having trouble using third party jQuery plugins – showing error jQuery is not defined
The following is my file structure.
app.js
import $ from 'jquery'
import plugin from 'jquery-plugin'
jquery-plugin.js
(function($) {
// Plugin code here
}(jQuery));
Any ideas?