Files
Yajbir Singh f1b860b25c
Some checks failed
check / markdownlint (push) Has been cancelled
check / spellchecker (push) Has been cancelled
updated
2025-12-11 19:03:17 +05:30

23 lines
624 B
JavaScript

// 2nd config
require.config({
config: {
// "wrap" amd plugin options
wrap: {
shim: {
// How to wrap the ~jquery.bar~ module
"plugin1/jquery.bar": {
deps: {
// Module "app/lib/jquery" goes to parameter "jQuery"
"app/lib/jquery": "jQuery"
},
exports: "jQuery"
}
}
}
}
});
define(["wrap!plugin1/jquery.bar"], function(jQuery) {
console.log("jquery.bar: " + (jQuery && jQuery.bar));
return "A loaded!";
});