Skip to content

Instantly share code, notes, and snippets.

@BenConstable
Last active August 29, 2015 14:08
Show Gist options
  • Save BenConstable/1d1d81426983904f7a48 to your computer and use it in GitHub Desktop.
Save BenConstable/1d1d81426983904f7a48 to your computer and use it in GitHub Desktop.
Browserify jQuery plugin config
var $ = require('shimmed-jquery')
require('plugin.jquery')
$('.element').plugin()
{
"dependencies": {
"jquery": "~1.11"
}
}
(function ($) {
$.fn.plugin = function () {}
})(window.jQuery)
module.exports = window.jQuery = window.$ = require('jquery')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment