summaryrefslogtreecommitdiff
path: root/lib/dojo/dojo.profile.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2013-03-18 10:26:24 +0400
committerAndrew Dolgov <[email protected]>2013-03-18 10:26:26 +0400
commitf0cfe83e3725f9a3928da97a6e3085e79cb25309 (patch)
tree4b0af188defaa807c7bc6ff3a101b41c9166c463 /lib/dojo/dojo.profile.js
parent9a2885da170ffd64358b99194095851a2d09c1b6 (diff)
upgrade dojo to 1.8.3 (refs #570)
Diffstat (limited to 'lib/dojo/dojo.profile.js')
-rw-r--r--lib/dojo/dojo.profile.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/dojo/dojo.profile.js b/lib/dojo/dojo.profile.js
index 40e45f923..4b24edb5e 100644
--- a/lib/dojo/dojo.profile.js
+++ b/lib/dojo/dojo.profile.js
@@ -15,7 +15,11 @@ var profile = (function(){
"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);
+ return (mid in list) ||
+ /^dojo\/_base\/config\w+$/.test(mid) ||
+ (/^dojo\/resources\//.test(mid) && !/\.css$/.test(filename)) ||
+ /(png|jpg|jpeg|gif|tiff)$/.test(filename) ||
+ /built\-i18n\-test\/152\-build/.test(mid);
};
return {
@@ -31,10 +35,6 @@ var profile = (function(){
amd: function(filename, mid){
return !testResourceRe.test(mid) && !copyOnly(filename, mid) && /\.js$/.test(filename);
}
- },
-
- trees:[
- [".", ".", /(\/\.)|(~$)/]
- ]
+ }
};
})();