Link: http://dojotoolkit.org/book/dojo-book-0-9/part-4-meta-dojo/package-system-and-custom-builds
To generate a profile.js file for dojo builds, you can use the following command string:
grep dojo.require * | sed “s/dojo\.require\ *(\ *\([\’\"][^\)]*\)).*/\1/” | awk ‘{l=length($0);if (FNR!=1) printf “\n,%s",$0; else printf “%s",$0;}’ > middle
Sample output:
"dojo.parser" ,"dijit.layout.ContentPane" ,"dijit.layout.TabContainer" ,"dijit.form.Button" ,"dijit.ColorPalette"
If this ouput is prefixed with (name the file top):
Code:
dependencies ={ | |
layers: [ | |
{ | |
name: "mydojo.js", | |
dependencies: [ |
and postfixed with (name the file bottom):
Code:
] | |
} | |
], | |
prefixes: [ | |
[ "dijit", "../dijit" ], | |
[ "dojox", "../dojox" ] | |
] | |
}; |
It will yield a properly formatted profile.js file.
Use cat to assemble it, like so:
cat top middle bottom
Note that dojo.parser and other core elements don’t have to be specified, but it is simpler to leave them in.