This repository was archived by the owner on Oct 29, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +32
-12
lines changed Expand file tree Collapse file tree 5 files changed +32
-12
lines changed Original file line number Diff line number Diff line change @@ -25,10 +25,12 @@ jobs:
25
25
timeout : 1200
26
26
no_output_timeout : 20m
27
27
- run : sudo npm install -g react-native-cli
28
- - run : cd HelloReactNative && npm install
28
+ - run : cd .. && git clone https://github.com/launchdarkly/hello-react-native.git
29
+ - run : cd ../hello-react-native && npm install
30
+ - run : cp -r ../project/ ../hello-react-native/node_modules/launchdarkly-react-native-client/
29
31
- run : circle-android wait-for-boot
30
32
- run :
31
- command : cd ReactNativeRestwrapper && react-native run-android
33
+ command : cd ../hello-react-native && react-native run-android
32
34
background : true
33
35
timeout : 1200
34
36
41
43
- run : xcrun simctl create rn-ios com.apple.CoreSimulator.SimDeviceType.iPhone-X com.apple.CoreSimulator.SimRuntime.iOS-12-1
42
44
- run : xcrun simctl boot rn-ios
43
45
- run : sudo npm install -g react-native-cli
44
- - run : cd HelloReactNative && npm install
45
- - run : cd HelloReactNative && react-native run-ios --configuration Release
46
+ - run : cd .. && git clone https://github.com/launchdarkly/hello-react-native.git
47
+ - run : cd ../hello-react-native && npm install
48
+ - run : cp -r ../project/ ../hello-react-native/node_modules/launchdarkly-react-native-client/
49
+ - run : cd ../hello-react-native && react-native run-ios --configuration Release
46
50
47
51
workflows :
48
52
version : 2
Original file line number Diff line number Diff line change
1
+ # Change log
2
+
3
+ All notable changes to the LaunchDarkly React Native SDK will be documented in this file. This project adheres to [ Semantic Versioning] ( http://semver.org ) .
4
+
5
+ ## [ 1.0.0-beta.1] - 2019-03-01
6
+ ### Added
7
+ - CHANGELOG.md and CONTRIBUTING.md
8
+ ### Changed
9
+ - Moved ` LaunchDarklyReactNativeClient.podspec ` into ` ios/ `
10
+ ### Fixed
11
+ - Changed ` config.yml ` to run against ` hello-react-native ` .
Original file line number Diff line number Diff line change
1
+ # How to work on this project
2
+ 1 . Ensure you have ` npm ` and ` react-native-cli ` installed.
3
+ 2 . Clone and setup the ` hello-react-native ` repo.
4
+ 3 . Make changes in ` node_modules/launchdarkly-react-native-client ` .
5
+ 4 . Test your changes in the root of Hello using either ` react-native run-ios ` or ` react-native run-android ` .
Original file line number Diff line number Diff line change 1
1
2
2
Pod ::Spec . new do |s |
3
3
s . name = "LaunchdarklyReactNativeClient"
4
- s . version = "1.0.0-beta.0 "
4
+ s . version = "1.0.0-beta.1 "
5
5
s . summary = "LaunchdarklyReactNativeClient"
6
6
s . description = <<-DESC
7
7
LaunchdarklyReactNativeClient
8
8
DESC
9
9
s . homepage = "https://launchdarkly.com"
10
10
s . license = "MIT"
11
- s . license = { :type => "Apache-2.0" , :file => "LICENSE" }
11
+ s . license = { :type => "Apache-2.0" , :file => "../ LICENSE" }
12
12
s . author = { "author" => "[email protected] " }
13
- s . platform = :ios , "8 .0"
13
+ s . platform = :ios , "9 .0"
14
14
s . source = { :git => "https://github.com/launchdarkly/react-native-client.git" , :tag => "master" }
15
- s . source_files = "ios/**/*.{h,m,swift}"
16
- s . exclude_files = "android/**/*"
17
- s . preserve_paths = "package.json"
15
+ s . source_files = "**/*.{h,m,swift}"
16
+ s . swift_version = "3.0"
18
17
19
18
s . dependency "React"
20
19
s . dependency "LaunchDarkly" , "~> 3.0.0-beta.2"
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " launchdarkly-react-native-client" ,
3
- "version" : " 1.0.0-beta.0 " ,
3
+ "version" : " 1.0.0-beta.1 " ,
4
4
"description" : " " ,
5
5
"main" : " index.js" ,
6
6
"scripts" : {
20
20
},
21
21
"homepage" : " https://docs.launchdarkly.com/v2.0/docs/react-native-sdk-reference" ,
22
22
"peerDependencies" : {
23
- "react-native" : " 0.57.7"
23
+ "react-native" : " 0.57.7" ,
24
+ "react" : " 16.6.1"
24
25
},
25
26
"dependencies" : {
26
27
"react" : " ^16.6.1" ,
You can’t perform that action at this time.
0 commit comments