forked from asciidisco/grunt-requirejs
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6987ee8
commit 5ac0858
Showing
8 changed files
with
111 additions
and
74 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
language: node_js | ||
node_js: 0.8 | ||
before_script: | ||
- "export DISPLAY=:99.0" | ||
- "npm install" | ||
before_script: "npm install" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,11 @@ | ||
Sebastian Golasch (http://github.com/asciidisco) | ||
|
||
Contributors: | ||
indieisaconcept | ||
Jörn Zaefferer (https://github.com/jzaefferer) | ||
Lauri Piispanen (https://github.com/lauripiispanen) | ||
bernos (https://github.com/bernos) | ||
Christopher Rogers (https://github.com/chrissrogers) | ||
Sven Lito (https://github.com/svnlto) | ||
Kengo TODA (https://github.com/eller86) | ||
Rodrigo Espinosa (https://github.com/RodEsp) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,88 @@ | ||
v0.1.3: | ||
date: 2012-11-23 | ||
v0.3.0: | ||
commit: | ||
date: 2012-10-01 | ||
changes: | ||
- Added testsuite | ||
- Fixed issues regarding the removal of the extend method (Builds without view) | ||
- Fixed issues of the Router only build not working | ||
- | ||
|
||
v0.1.2: | ||
date: 2012-11-22 | ||
v0.2.14: | ||
commit: c6258f7a00d2fdb7927e5b9c3be3dc75546f1a98 | ||
date: 2012-10-01 | ||
changes: | ||
- Fixed filename reference in package.json | ||
- fixes package.json dependecy versions | ||
|
||
v0.1.1: | ||
date: 2012-11-22 | ||
v0.2.13: | ||
commit: ad323ceba047a8013743e289b979ce49ac1b4bb1 | ||
date: 2012-10-01 | ||
changes: | ||
- ´include´ definition is now case insensitive | ||
- fixes according to the changes from the last cheerio release | ||
|
||
v0.2.12: | ||
commit: f3e1b00e2b60d95b7416515a26871632140e036b | ||
date: 2012-09-25 | ||
changes: | ||
- fixes issue of r.js almond-based dependency mixup (added by @chrissrogers) | ||
|
||
v0.2.11: | ||
commit: 85d8f22c821f237546be5bc48f94f6437c46f480 | ||
date: 2012-09-13 | ||
changes: | ||
- Fixed issue #17 (almond: false, causes build to fail) | ||
- Added example projects | ||
|
||
v0.2.10: | ||
commit: 8ec0309075de55371f030742a3dd4fe6d9b30c16 | ||
date: 2012-09-10 | ||
changes: | ||
- Fixed issue #4 | ||
- Fixed issue #8 | ||
|
||
v0.2.9: | ||
commit: e61c4ec1965747a2f25f4130dc48c6afdc4c3229 | ||
date: 2012-07-10 | ||
changes: | ||
- Removed jQuery dependency and replaced it with cheerio | ||
- Updated versions of 3rd party libs | ||
|
||
v0.2.8: | ||
commit: ef4f28bcfbed595f8d732096047241251678c915 | ||
date: 2012-05-29 | ||
changes: | ||
- RequireJS Version bump to 2.0 | ||
|
||
v0.2.7: | ||
commit: 05f5c8b67e6e89c505de47e7c64bfe823d8b56ea | ||
date: 2012-05-29 | ||
changes: | ||
- Removed npm dependency for tracing the almond file | ||
- Added some informations in the readme about the almond 'wrap=true' | ||
|
||
v0.2.6: | ||
commit: 52096b00d5b56d40b4fb4f5057090471206a4523 | ||
date: 2012-05-21 | ||
changes: | ||
- Added 'modulePath' configuration option for specifying your modules path | ||
- Added 'modulePath' documentation | ||
|
||
v0.2.5: | ||
commit: ef75f324a0d80667fcb0d4947f031f736767ea51 | ||
date: 2012-05-20 | ||
changes: | ||
- Added dual config | ||
- Optimized almond integration (removed npm dependency) | ||
- Readme updates | ||
- requirejs isnt a multi task anymore | ||
|
||
v0.2.0: | ||
commit: e8ad44718c00c089f60ae0af03a46fd526ec9d5a | ||
date: 2012-05-08 | ||
changes: | ||
- Removed clearTarget (use grunt-contrib clean instead) | ||
- Added [almond](https://github.com/jrburke/almond) integration | ||
- Added automatic almond js module script tag replacement for html files | ||
- Improved documentation | ||
|
||
v0.1.0: | ||
date: 2012-11-22 | ||
commit: | ||
date: | ||
changes: | ||
- Initial release. | ||
- Initial Release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -77,4 +77,4 @@ exports.init = function(grunt) { | |
|
||
return configClone; | ||
}; | ||
}; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters