Compare commits

...
Author SHA1 Message Date
Martin Konicek 55782575cb [0.40.0-rc.2] Bump version numbers 2016-12-08 11:43:37 +00:00
Martin Konicek 7ea40aa0cc Remove dependency on Yeoman
Summary:
We stopped using Yeoman in https://github.com/facebook/react-native/pull/10786

I almost forgot to remove the now-unused dependency :)

**Test Plan**

- Published react-native to Sinopia
- Ran `react-native init MyApp`
- The app was generated correctly
- The app's node_modules folder doesn't contain Yeoman

Reviewed By: cpojer

Differential Revision: D4291619

fbshipit-source-id: 44c1ef8035fa2d8c40d4e8c505207245e1a95d3c
2016-12-08 11:43:12 +00:00
Martin Konicek e7ae12454d [0.40.0-rc.1] Bump version numbers 2016-12-05 14:18:31 +00:00
Martin Konicek 9b534082ca Fix a bug in determining if yarn is available
Reviewed By: mkonicek

Differential Revision:
D4276707
Ninja: OSS

fbshipit-source-id: 79cb2942f27179681d1a8ebfd3bc5a97f544f7af
2016-12-05 14:17:46 +00:00
Mike Grabowski 9233d85ec5 [0.40.0-rc.0] Bump version numbers 2016-12-02 02:15:45 +01:00
4 changed files with 6 additions and 7 deletions
+1 -1
View File
@@ -4,7 +4,7 @@ package = JSON.parse(File.read(File.join(__dir__, 'package.json')))
Pod::Spec.new do |s|
s.name = "React"
s.version = package['version']
s.version = "0.40.0-rc.2"
s.summary = package['description']
s.description = <<-DESC
React Native apps are built using the React JS
+1 -1
View File
@@ -1,4 +1,4 @@
VERSION_NAME=1000.0.0-master
VERSION_NAME=0.40.0-rc.2
GROUP=com.facebook.react
POM_NAME=ReactNative
+1
View File
@@ -8,6 +8,7 @@
*/
'use strict';
const execSync = require('child_process').execSync;
const fs = require('fs');
const path = require('path');
const semver = require('semver');
+3 -5
View File
@@ -1,6 +1,6 @@
{
"name": "react-native",
"version": "1000.0.0",
"version": "0.40.0-rc.2",
"description": "A framework for building native apps using React",
"license": "BSD-3-Clause",
"repository": {
@@ -191,9 +191,7 @@
"ws": "^1.1.0",
"xcode": "^0.8.9",
"xmldoc": "^0.4.0",
"yargs": "^6.4.0",
"yeoman-environment": "1.5.3",
"yeoman-generator": "0.21.2"
"yargs": "^6.4.0"
},
"devDependencies": {
"JSONStream": "1.2.1",
@@ -222,4 +220,4 @@
"sinon": "^2.0.0-pre.2",
"split": "1.0.0"
}
}
}