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.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
clmath committed Dec 3, 2014
1 parent e0b7e4e commit 5c19f47
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 27 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,14 @@ Then install dependencies with bower (or manually from github if you prefer to):
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:
```
For example, this code:
```js
require(["app/main", "delite/foo"], function() {
...
});
```
Becomes:
```
```js
require(["delite-build/layer"], function() {
require(["app/main", "delite/foo"], function() {
...
Expand Down
9 changes: 5 additions & 4 deletions bower.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
{
"name": "delite-build",
"version": "0.4.0",
"version": "0.5.0",
"dependencies": {
"jquery": ">=2.1",
"requirejs": "2.1.x",
"decor-build": "0.3.x",
"dpointer-build": "0.3.x"
"decor-build": "0.4.x",
"dpointer-build": "0.4.x"
},
"devDependencies": {
"delite": "0.4.0"
"delite": "0.5.0"
},
"ignore": [
".jshintrc",
Expand Down
28 changes: 10 additions & 18 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.

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 5c19f47

Please sign in to comment.