Permalink
Please sign in to comment.
Browse files
Move react-tools from root.
ReactTools is deprecated, it doesn't belong at the root of the project. We'll remove it after 0.14 but for now this moves it so that it's contained and not intermixed with the rest of the project. The currect behavior of copying src/ into the package is maintained.
Showing
with
41 additions
and 46 deletions.
18
grunt/tasks/npm-react-tools.js
0
bin/jsx → npm-react-tools/bin/jsx
File renamed without changes.
0
main.js → npm-react-tools/main.js
File renamed without changes.
32
npm-react-tools/package.json
@@ -0,0 +1,32 @@ | ||
+{ | ||
+ "name": "react-tools", | ||
+ "description": "A set of complementary tools to React, including the JSX transformer.", | ||
+ "version": "0.14.0-alpha3", | ||
+ "keywords": [ | ||
+ "react", | ||
+ "jsx", | ||
+ "transformer", | ||
+ "view" | ||
+ ], | ||
+ "homepage": "https://facebook.github.io/react", | ||
+ "bugs": "https://github.com/facebook/react/issues", | ||
+ "license": "BSD-3-Clause", | ||
+ "files": [ | ||
+ "main.js", | ||
+ "bin/jsx", | ||
+ "src/" | ||
+ ], | ||
+ "main": "main.js", | ||
+ "bin": { | ||
+ "jsx": "./bin/jsx" | ||
+ }, | ||
+ "repository": "facebook/react", | ||
+ "dependencies": { | ||
+ "commoner": "^0.10.0", | ||
+ "jstransform": "^11.0.0" | ||
+ }, | ||
+ "engines": { | ||
+ "node": ">=0.10.0" | ||
+ }, | ||
+ "preferGlobal": true | ||
+} |
32
package.json
5
packages/react/package.json
0 comments on commit
d982d5e