Build version of ibm-js/deliteful.
No official release yet.
Bower release installation:
$ bower install deliteful-build
Manual master installation:
$ git clone git://github.com/ibm-js/deliteful-build.git
Then install dependencies with bower (or manually from github if you prefer to):
$ cd deliteful-build
$ bower install
To load the minified layer you need to wrap your main require
call with another require
, requiring "deliteful-build/layer"
. Then you should continue to
refer to modules with "deliteful/foo"
.
For example, this code:
require(["app/main", "deliteful/foo"], function() {
...
});
Becomes:
require(["deliteful-build/layer"], function() {
require(["app/main", "deliteful/foo"], function() {
...
});
});
This project is distributed by the Dojo Foundation and licensed under the "New" BSD License. All contributions require a Dojo Foundation CLA.