Compare commits

...

2 Commits

Author SHA1 Message Date
Paul O’Shannessy
274aca3093 0.9.0! 2014-02-19 22:50:30 -08:00
Paul O’Shannessy
c60a83758b shrinkwrap
Had to work around bug in falafel preventing shrinkwrap by editing
node_modules/coverify/node_modules/falafel/package.json to declare esprima as
a dependency. cf. https://github.com/substack/node-falafel/pull/24
2014-02-19 22:47:53 -08:00
5 changed files with 2245 additions and 4 deletions

View File

@@ -13,7 +13,7 @@ redcarpet:
pygments: true
name: React
markdown: redcarpet
react_version: 0.9.0-rc1
react_version: 0.9.0
description: A JavaScript library for building user interfaces
relative_permalinks: true
paginate: 5

View File

@@ -1,7 +1,7 @@
{
"name": "react",
"description": "React is a JavaScript library for building user interfaces.",
"version": "0.9.0-rc1",
"version": "0.9.0",
"keywords": [
"react"
],

2241
npm-shrinkwrap.json generated Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -1,7 +1,7 @@
{
"name": "react-tools",
"description": "A set of complementary tools to React, including the JSX transformer.",
"version": "0.9.0-rc1",
"version": "0.9.0",
"keywords": [
"react",
"jsx",

View File

@@ -90,6 +90,6 @@ if (__DEV__) {
// Version exists only in the open-source version of React, not in Facebook's
// internal version.
React.version = '0.9.0-rc1';
React.version = '0.9.0';
module.exports = React;