Skip to content
This repository has been archived by the owner on Feb 2, 2020. It is now read-only.

Commit

Permalink
Update to 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
clmath committed Oct 24, 2014
1 parent 0008786 commit e0b7e4e
Show file tree
Hide file tree
Showing 7 changed files with 72 additions and 32 deletions.
38 changes: 37 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,43 @@ Build version of [ibm-js/delite](https://github.com/ibm-js/delite).
## Status

No official release yet.


## Installation

_Bower_ release installation:

$ bower install delite-build

_Manual_ master installation:

$ git clone git://github.com/ibm-js/delite-build.git

Then install dependencies with bower (or manually from github if you prefer to):

$ cd delite-build
$ bower install


## How to use

To load the minified layer you need to wrap your main `require` call with another `require`, requiring `"delite-build/layer"`. Then you should continue to
refer to modules with `"delite/foo"`.

For example, this:
```
require(["app/main", "delite/foo"], function() {
...
});
```
Becomes:
```
require(["delite-build/layer"], function() {
require(["app/main", "delite/foo"], function() {
...
});
});
```

## Licensing

This project is distributed by the Dojo Foundation and licensed under the ["New" BSD License](./LICENSE).
Expand Down
17 changes: 0 additions & 17 deletions boot.js

This file was deleted.

9 changes: 3 additions & 6 deletions bower.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,13 @@
{
"name": "delite-build",
"version": "0.3.0",
"version": "0.4.0",
"dependencies": {
"dojo": ">=1.9.1",
"requirejs": "2.1.x",
"requirejs-domready": "2.0.x",
"requirejs-text": "2.0.x",
"decor-build": "0.2.1",
"decor-build": "0.3.x",
"dpointer-build": "0.3.x"
},
"devDependencies": {
"delite": "0.3.0"
"delite": "0.4.0"
},
"ignore": [
".jshintrc",
Expand Down
26 changes: 21 additions & 5 deletions layer.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion layer.map

Large diffs are not rendered by default.

10 changes: 9 additions & 1 deletion themes/defaultapp.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,12 @@ html, body {
height: 100%;
margin: 0;
padding: 0;
}
}

.width100 {
width: 100%;
}

.height100 {
height: 100%;
}
2 changes: 1 addition & 1 deletion themes/layer_bootstrap.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit e0b7e4e

Please sign in to comment.