You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tt-rss/lib/dijit/dijit.profile.js

39 lines
979 B
JavaScript

var profile = (function(){
var testResourceRe = /^dijit\/tests\//,
nodeModulesRe = /\/node_modules\//,
copyOnly = function(filename, mid){
var list = {
"dijit/dijit.profile":1,
"dijit/package.json":1,
"dijit/themes/claro/compile":1
};
return (mid in list) ||
(/^dijit\/resources\//.test(mid) && !/\.css$/.test(filename)) ||
/(png|jpg|jpeg|gif|tiff)$/.test(filename) ||
nodeModulesRe.test(mid);
};
return {
resourceTags:{
test: function(filename, mid){
return testResourceRe.test(mid) || mid=="dijit/robot" || mid=="dijit/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 /^dijit\/bench\//.test(mid) ||
/^dijit\/themes\/themeTest/.test(mid) ||
nodeModulesRe.test(mid);
}
}
};
})();