Changeset 7629
- Timestamp:
- 03/17/07 15:22:08 (21 months ago)
- Files:
-
- 1 modified
-
branches/0.4/buildscripts/buildUtil.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/0.4/buildscripts/buildUtil.js
r7492 r7629 281 281 } 282 282 283 //If we have a string for a regexp, do the dojo.require() removal now.283 //If we have a string for a regexp, do the dojo.require() and requireIf() removal now. 284 284 if(depRegExpString){ 285 var depRegExp = new RegExp("dojo\\.(require )\\((" + depRegExpString + ")\\)(;?)", "g");285 var depRegExp = new RegExp("dojo\\.(require|requireIf)\\(.*?(" + depRegExpString + ")\\)(;?)", "g"); 286 286 dojoContents = dojoContents.replace(depRegExp, ""); 287 287 }