Automated build for v0.01
This commit is contained in:
46
lib/dojo/dojo.profile.js
Normal file
46
lib/dojo/dojo.profile.js
Normal file
@ -0,0 +1,46 @@
|
||||
var profile = (function(){
|
||||
var testResourceRe = /^dojo\/tests(?:DOH)?\//,
|
||||
nodeModulesRe = /\/node_modules\//,
|
||||
|
||||
copyOnly = function(filename, mid){
|
||||
var list = {
|
||||
"dojo/dojo.profile":1,
|
||||
"dojo/package.json":1,
|
||||
"dojo/OpenAjax":1,
|
||||
"dojo/tests":1,
|
||||
// these are test modules that are not intended to ever be built
|
||||
"dojo/tests/_base/loader/requirejs/requirejs-setup":1,
|
||||
"dojo/tests/_base/loader/requirejs/dataMain":1,
|
||||
"dojo/tests/_base/loader/requirejs/depoverlap":1,
|
||||
"dojo/tests/_base/loader/requirejs/simple-tests":1,
|
||||
"dojo/tests/_base/loader/requirejs/relative/relative-tests":1,
|
||||
"dojo/tests/_base/loader/requirejs/exports/exports-tests":1
|
||||
};
|
||||
return (mid in list) ||
|
||||
/^dojo\/_base\/config\w+$/.test(mid) ||
|
||||
(/^dojo\/resources\//.test(mid) && !/\.css$/.test(filename)) ||
|
||||
/(png|jpg|jpeg|gif|tiff)$/.test(filename) ||
|
||||
nodeModulesRe.test(mid) ||
|
||||
/built\-i18n\-test\/152\-build/.test(mid);
|
||||
};
|
||||
|
||||
return {
|
||||
resourceTags:{
|
||||
test: function(filename, mid){
|
||||
return testResourceRe.test(mid) || mid=="dojo/robot" || mid=="dojo/robotx";
|
||||
},
|
||||
|
||||
copyOnly: function(filename, mid){
|
||||
return copyOnly(filename, mid);
|
||||
},
|
||||
|
||||
amd: function(filename, mid){
|
||||
return !testResourceRe.test(mid) && !copyOnly(filename, mid) && /\.js$/.test(filename);
|
||||
},
|
||||
|
||||
miniExclude: function(filename, mid){
|
||||
return nodeModulesRe.test(mid);
|
||||
}
|
||||
}
|
||||
};
|
||||
})();
|
Reference in New Issue
Block a user