Changeset 8072 for trunk/buildscripts
- Timestamp:
- 04/12/07 10:51:54 (20 months ago)
- Files:
-
- 1 modified
-
trunk/buildscripts/buildUtil.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/buildscripts/buildUtil.js
r7931 r8072 343 343 //If we have a string for a regexp, do the dojo.require() and requireIf() removal now. 344 344 if(depRegExpString){ 345 //Make to escape regexp-sensitive characters 346 depRegExpString = depRegExpString.replace(/([\.\*])/g, "\\$1"); 347 //Build the regexp 345 348 var depRegExp = new RegExp("dojo\\.(require|requireIf)\\(.*?(" + depRegExpString + ")\\)(;?)", "g"); 346 349 dojoContents = dojoContents.replace(depRegExp, "");