mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-04-01 21:40:25 +00:00
22 lines
438 B
JavaScript
22 lines
438 B
JavaScript
({
|
|
appDir: "..",
|
|
baseUrl: "js/",
|
|
dir: "../dist",
|
|
|
|
//optimize: "none",
|
|
|
|
modules: [
|
|
{
|
|
name: "jquery.mobile",
|
|
//include: [ "almond" ],
|
|
exclude: [ "jquery", "order" ]
|
|
}
|
|
],
|
|
|
|
wrap: {
|
|
start: "(function() {",
|
|
end: '\nif ( typeof define === "function" && define.amd ) {\ndefine( "jquery.mobile", [], function () { return jQuery.mobile; } );\n}\n}());'
|
|
},
|
|
|
|
dirExclusionRegExp: /^build|^compiled|^external|^tests/
|
|
})
|