Skip to content

Commit

Permalink
upgrade dependencies and bump version
Browse files Browse the repository at this point in the history
 amdefine@0.0.5, eventemitter@0.4.11, requirejs@2.1.6, mocha@1.10.0, chai@1.6.0, jake@0.5.15 (v0.7.0)
  • Loading branch information
jeffbski committed May 23, 2013
1 parent 805d498 commit 7b28485
Show file tree
Hide file tree
Showing 10 changed files with 4,862 additions and 6,376 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ See the [Advanced React](https://github.com/jeffbski/react/blob/master/doc/advan


## Status ## Status


- 2013-05-23 - Allow use of globals without needing to specify in locals, move 'use strict' into define - 2013-05-23 - Allow use of globals without needing to specify in locals, move 'use strict' into define, upgrade amdefine@0.0.5, eventemitter@0.4.11, requirejs@2.1.6, mocha@1.10.0, chai@1.6.0, jake@0.5.15 (v0.7.0)
- 2013-04-12 - Update to test on node 0.8, 0.10, 0.11 - 2013-04-12 - Update to test on node 0.8, 0.10, 0.11
- 2012-10-17 - Fix issue with logEvents and provide way to disable logEvents(false) (v0.6.3) - 2012-10-17 - Fix issue with logEvents and provide way to disable logEvents(false) (v0.6.3)
- 2012-09-12 - Upgrade RequireJS@2.0.6, mocha@1.4.2, chai@1.2.0, jake@0.3.16. Update travis config to include Node 0.8 (v0.6.2) - 2012-09-12 - Upgrade RequireJS@2.0.6, mocha@1.4.2, chai@1.2.0, jake@0.3.16. Update travis config to include Node 0.8 (v0.6.2)
Expand Down
2 changes: 1 addition & 1 deletion dist/react.min.js

Large diffs are not rendered by default.

14 changes: 7 additions & 7 deletions package.json
Original file line number Original file line Diff line number Diff line change
@@ -1,23 +1,23 @@
{ {
"name": "react", "name": "react",
"description": "React is a javascript module implementing a lightweight rules engine to make it easier to work with asynchronous code, by reducing boilerplate code and improving error and exception handling while allowing variable and task dependencies when defining flow.", "description": "React is a javascript module implementing a lightweight rules engine to make it easier to work with asynchronous code, by reducing boilerplate code and improving error and exception handling while allowing variable and task dependencies when defining flow.",
"version": "0.6.3", "version": "0.7.0",
"author": "Jeff Barczewski <jeff.barczewski@gmail.com>", "author": "Jeff Barczewski <jeff.barczewski@gmail.com>",
"repository": { "type": "git", "url": "http://github.com/jeffbski/react.git" }, "repository": { "type": "git", "url": "http://github.com/jeffbski/react.git" },
"bugs" : { "url": "http://github.com/jeffbski/react/issues" }, "bugs" : { "url": "http://github.com/jeffbski/react/issues" },
"licenses": [{ "type": "MIT", "url" : "http://github.com/jeffbski/react/raw/master/LICENSE" }], "licenses": [{ "type": "MIT", "url" : "http://github.com/jeffbski/react/raw/master/LICENSE" }],
"main": "lib/react", "main": "lib/react",
"engines": { "node": ">=0.6" }, "engines": { "node": ">=0.6" },
"dependencies": { "dependencies": {
"amdefine": "~0.0.2", "amdefine": "~0.0.5",
"eventemitter2": "~0.4.1", "eventemitter2": "~0.4.11",
"ensure-array": "~0.0.5" "ensure-array": "~0.0.5"
}, },
"devDependencies": { "devDependencies": {
"requirejs": "~2.0.6", "requirejs": "~2.1.6",
"mocha": "~1.9.0", "mocha": "~1.10.0",
"chai": "~1.5.0", "chai": "~1.6.0",
"jake": "~0.3.16", "jake": "~0.5.15",
"Deferred" : "~0.1.1" "Deferred" : "~0.1.1"
}, },
"scripts": { "scripts": {
Expand Down
2 changes: 1 addition & 1 deletion test/ast.mocha.js
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ if (typeof(react) === 'undefined') {


test('ast.defined event is passed to process', function (done) { test('ast.defined event is passed to process', function (done) {
// browser might not have this, so only if process is an eventemitter // browser might not have this, so only if process is an eventemitter
if (process && process.once) { if (typeof process !== 'undefined' && process && process.once) {
var fn = react(); var fn = react();
process.once('ast.defined', function (ast) { process.once('ast.defined', function (ast) {
t.isObject(ast); t.isObject(ast);
Expand Down
2 changes: 1 addition & 1 deletion test/dsl.mocha.js
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ if (typeof(sprintf) === 'undefined') {


test('long example', function (done) { test('long example', function (done) {
/*jshint white: false */ /*jshint white: false */
this.timeout(6000); // runs slow on safari? this.timeout(10000); // runs slow on safari?


function loadUser(uid, cb){ setTimeout(cb, 100, null, "User"+uid); } function loadUser(uid, cb){ setTimeout(cb, 100, null, "User"+uid); }
function loadFile(filename, cb){ setTimeout(cb, 100, null, 'Filedata'+filename); } function loadFile(filename, cb){ setTimeout(cb, 100, null, 'Filedata'+filename); }
Expand Down
Loading

0 comments on commit 7b28485

Please sign in to comment.