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

Commit e0b7e4e

Browse files
committed
Update to 0.4.0
1 parent 0008786 commit e0b7e4e

7 files changed

+72
-32
lines changed

README.md

+37-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,43 @@ Build version of [ibm-js/delite](https://github.com/ibm-js/delite).
55
## Status
66

77
No official release yet.
8-
8+
9+
## Installation
10+
11+
_Bower_ release installation:
12+
13+
$ bower install delite-build
14+
15+
_Manual_ master installation:
16+
17+
$ git clone git://github.com/ibm-js/delite-build.git
18+
19+
Then install dependencies with bower (or manually from github if you prefer to):
20+
21+
$ cd delite-build
22+
$ bower install
23+
24+
25+
## How to use
26+
27+
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
28+
refer to modules with `"delite/foo"`.
29+
30+
For example, this:
31+
```
32+
require(["app/main", "delite/foo"], function() {
33+
...
34+
});
35+
```
36+
Becomes:
37+
```
38+
require(["delite-build/layer"], function() {
39+
require(["app/main", "delite/foo"], function() {
40+
...
41+
});
42+
});
43+
```
44+
945
## Licensing
1046

1147
This project is distributed by the Dojo Foundation and licensed under the ["New" BSD License](./LICENSE).

boot.js

-17
This file was deleted.

bower.json

+3-6
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,13 @@
11
{
22
"name": "delite-build",
3-
"version": "0.3.0",
3+
"version": "0.4.0",
44
"dependencies": {
5-
"dojo": ">=1.9.1",
65
"requirejs": "2.1.x",
7-
"requirejs-domready": "2.0.x",
8-
"requirejs-text": "2.0.x",
9-
"decor-build": "0.2.1",
6+
"decor-build": "0.3.x",
107
"dpointer-build": "0.3.x"
118
},
129
"devDependencies": {
13-
"delite": "0.3.0"
10+
"delite": "0.4.0"
1411
},
1512
"ignore": [
1613
".jshintrc",

layer.js

+21-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

layer.map

+1-1
Large diffs are not rendered by default.

themes/defaultapp.css

+9-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,12 @@ html, body {
66
height: 100%;
77
margin: 0;
88
padding: 0;
9-
}
9+
}
10+
11+
.width100 {
12+
width: 100%;
13+
}
14+
15+
.height100 {
16+
height: 100%;
17+
}

themes/layer_bootstrap.css

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)