Skip to content

Commit

Permalink
ensure css files are not marked as copyOnly during build, thereby all…
Browse files Browse the repository at this point in the history
…owing them to be subject to css transforms; refs #14108

git-svn-id: http://svn.dojotoolkit.org/src/dojo/trunk@26898 560b804f-0ae3-0310-86f3-f6aa0a117693
  • Loading branch information
rcgill committed Oct 24, 2011
1 parent 55063ae commit cb381bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dojo.profile.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ var testResourceRe = /^dojo\/tests\//,
"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);
return (mid in list) || ((/^dojo\/_base\/config\w+$/.test(mid) || /^dojo\/resources\//.test(mid)) && !/\.css$/.test(mid));
};

var profile = {
Expand Down

0 comments on commit cb381bf

Please sign in to comment.