0.6.5 • Published 10 years ago
@malykhinvi/imports-loader v0.6.5
imports loader for webpack
This is the fork of original https://github.com/webpack/imports-loader repository. The only difference is that it fixes https://github.com/webpack/imports-loader/issues/5 issue.
Installation
npm install @malykhinvi/imports-loaderUsage
Given you have this file example.js
$("img").doSomeAwesomeJqueryPluginStuff();then you can inject the $ variable into the module by configuring the imports-loader like this:
require("@malykhinvi/imports-loader?$=jquery!./example.js");This simply prepends var $ = require("jquery"); to example.js.