mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-05-24 06:03:43 +00:00
Added wrapper and pragmasOnSave
This commit is contained in:
parent
5b8f2be9d2
commit
90da812af7
1 changed files with 20 additions and 0 deletions
|
|
@ -8,11 +8,31 @@
|
|||
//Finds require() dependencies inside a require() or define call.
|
||||
findNestedDependencies: true,
|
||||
|
||||
//If skipModuleInsertion is false, then files that do not use define()
|
||||
//to define modules will get a define() placeholder inserted for them.
|
||||
//Also, require.pause/resume calls will be inserted.
|
||||
//Set it to true to avoid this. This is useful if you are building code that
|
||||
//does not use require() in the built project or in the JS files, but you
|
||||
//still want to use the optimization tool from RequireJS to concatenate modules
|
||||
//together.
|
||||
skipModuleInsertion: true,
|
||||
|
||||
modules: [
|
||||
{
|
||||
name: "jquery.mobile.docs"
|
||||
}
|
||||
],
|
||||
|
||||
pragmasOnSave: {
|
||||
jqmBuildExclude: true
|
||||
},
|
||||
|
||||
//File paths are relative to the build file, or if running a commmand
|
||||
//line build, the current directory.
|
||||
wrap: {
|
||||
startFile: "wrap.start",
|
||||
endFile: "wrap.end"
|
||||
},
|
||||
|
||||
dirExclusionRegExp: /^\.|^build|^compiled/
|
||||
})
|
||||
Loading…
Reference in a new issue