#195 closed defect (fixed)
Minimal profile build is broken
Reported by: | martinc | Owned by: | alex |
---|---|---|---|
Priority: | high | Milestone: | |
Component: | BuildTools | Version: | 0.1 |
Keywords: | Cc: | ||
Blocked By: | Blocking: |
Description
The minimal profile includes only bootstap1.js, bootstrap2.js and hostenv_browser.js, since the 'dependencies' array is empty in minimal.profile.js. However, that last file uses dojo.lang.isArray, so dojo.byIdArray (and dojo.hostenv.byIdArray) do not work in a minimal build. The (trivial) fix would be to change the 'dependencies' array in minimal.profile.js to:
var dependencies = [
"dojo.event.*"
];
Change History (4)
comment:1 Changed 17 years ago by
comment:2 Changed 17 years ago by
Milestone: | → 0.2release |
---|---|
Owner: | changed from anonymous to alex |
Status: | new → assigned |
comment:3 Changed 17 years ago by
Resolution: | → fixed |
---|---|
Status: | assigned → closed |
Note: See
TracTickets for help on using
tickets.
Doh! Of course, I meant:
var dependencies = [
];