Build version of ibm-js/dtreemap.
No official release yet.
Bower release installation:
$ bower install dtreemap-build
Manual master installation:
$ git clone git://github.com/ibm-js/dtreemap-build.git
Then install dependencies with bower (or manually from github if you prefer to):
$ cd dtreemap-build
$ bower install
This is the most common use-case so the needed configuration is built in the layer.
To load the minified layer you just need to wrap your main require
call with another require
, requiring "dtreemap-build/layer"
.
Then you should continue to refer to modules with "dtreemap/foo"
.
For example, this code:
require(["app/main", "dtreemap/foo"], function() {
...
});
Becomes:
require(["dtreemap-build/layer"], function() {
require(["app/main", "dtreemap/foo"], function() {
...
});
});
If baseUrl
is not the directory containing dtreemap-build
, custom configuration is needed.
require.config({
paths: {
"dtreemap": "path/to/dtreemap-build",
"dcolor": "path/to/dcolor-build",
"dpointer": "path/to/dpointer-build",
"delite": "path/to/delite-build"
}
});
Issues should be filled against the source version of this project at ibm-js/dtreemap
This project is distributed by the Dojo Foundation and licensed under the "New" BSD License. All contributions require a Dojo Foundation CLA.