#13008 closed defect (fixed)
dojo/_base/loader not included in dojo.js
Reported by: | Ming Zhe Huang | Owned by: | Rawld Gill |
---|---|---|---|
Priority: | high | Milestone: | 1.7 |
Component: | BuildTools | Version: | 1.6.1 |
Keywords: | Cc: | ||
Blocked By: | Blocking: |
Description
OS: Win7 X64 JVM: 6 Optimizer: Shrinksafe JS Engine: Rhino Profile: standard Cmd line: build.bat action=release profile=standard cssOptimize=comments.keepLines optimize=shrinksafe layerOptimize=shrinksafe releaseDir=g:/temp/dojo
Please try the test_dojo.html and profile the network. You'll find that dojo/_base/loader is loaded, though most of the modules under dojo/_base are merged into dojo.js
Attachments (2)
Change History (7)
Changed 11 years ago by
Attachment: | test_dojo.html added |
---|
comment:1 Changed 11 years ago by
Owner: | changed from James Burke to Rawld Gill |
---|
comment:2 Changed 11 years ago by
Status: | new → assigned |
---|
comment:3 Changed 11 years ago by
Milestone: | tbd → 1.7 |
---|
comment:4 Changed 11 years ago by
Resolution: | → fixed |
---|---|
Status: | assigned → closed |
comment:5 Changed 11 years ago by
dojo/_base/loader is conditionally included based on the has feature "dojo-sync-loader". [25183] changes the default static has feature value of dojo-sync-loader to true. This may be changed in the profile by providing a different static has feature value together with a different default configuration for that value. For example, the following profile causes the synchronous loader to be loaded based on run-time (rather than build-time) configuration (defaulting to true)
dependencies = { staticHasFeatures:{ "dojo-sync-loader":-1 // -1 is a special value saying "not static" }, defaultConfig:{ hasCache:{ "dojo-sync-loader":1 } } };
test page