diff --git a/grunt/tasks/populist.js b/grunt/tasks/populist.js index 6efa1e5132..7ea837d130 100644 --- a/grunt/tasks/populist.js +++ b/grunt/tasks/populist.js @@ -32,7 +32,7 @@ module.exports = function() { rootDirectory: config.rootDirectory, args: args }).then(function(output) { - grunt.file.write(config.outfile, output); + grunt.file.write(config.outfile, 'process = {env: {}};' + output); theFilesToTestScript.end(); theFilesToTestScript.once('close', done); }); diff --git a/npm-react-core/package.json b/npm-react-core/package.json index effc04ef54..b37973dcda 100644 --- a/npm-react-core/package.json +++ b/npm-react-core/package.json @@ -1,6 +1,6 @@ { "name": "react", - "version": "0.6.0-alpha", + "version": "0.8.0-alpha", "keywords": [ "react" ], diff --git a/package.json b/package.json index 6fb319a810..18b8f53fcd 100644 --- a/package.json +++ b/package.json @@ -69,6 +69,6 @@ }, "preferGlobal": true, "commonerConfig": { - "version": 1 + "version": 2 } } diff --git a/src/core/React.js b/src/core/React.js index 3eaddbb8c5..f2cbcad215 100644 --- a/src/core/React.js +++ b/src/core/React.js @@ -67,6 +67,6 @@ var React = { // Version exists only in the open-source version of React, not in Facebook's // internal version. -React.version = '0.6.0-alpha'; +React.version = '0.8.0-alpha'; module.exports = React;