UNPKG

dojo

Version:

Dojo core is a powerful, lightweight library that makes common tasks quicker and easier. Animate elements, manipulate the DOM, and query with easy CSS syntax, all without sacrificing performance.

47 lines (41 loc) 1.42 kB
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); } } }; })();