6887a0f573
The itemNode and expandoNode elements have changed from img to span (https://bugs.dojotoolkit.org/ticket/16699), so we now put our tree icons inside them rather than replacing them. Signed-off-by: Anders Kaseorg <andersk@mit.edu>
46 lines
1.4 KiB
JavaScript
46 lines
1.4 KiB
JavaScript
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);
|
|
}
|
|
}
|
|
};
|
|
})();
|