Skip to content

Commit 7f98d92

Browse files
authored
Merge pull request #7 from DanielSanudo/initial_docs
Adding Readme.md and docs
2 parents a33a29e + ed9c31a commit 7f98d92

File tree

8 files changed

+647
-29
lines changed

8 files changed

+647
-29
lines changed

.circleci/config.yml

+15-27
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version: 2.1
22

33
orbs:
4-
rn: react-native-community/react-native@dev:0.1.0-rc14
4+
rn: react-native-community/react-native@1.2.1
55

66
jobs:
77
checkout_code:
@@ -12,18 +12,6 @@ jobs:
1212
root: .
1313
paths: .
1414

15-
install_example:
16-
executor: rn/linux_js
17-
steps:
18-
- attach_workspace:
19-
at: .
20-
- run:
21-
name: Install example
22-
command: npm run install:example
23-
- persist_to_workspace:
24-
root: .
25-
paths: .
26-
2715
analyse:
2816
executor: rn/linux_js
2917
steps:
@@ -49,20 +37,20 @@ workflows:
4937
- analyse:
5038
requires:
5139
- checkout_code
52-
- install_example:
53-
requires:
54-
- checkout_code
5540
- rn/android_build:
41+
name: build_android_release
5642
project_path: "example/android"
57-
name: build_android_debug
5843
requires:
59-
- install_example
60-
61-
# Add Detox tests before running this expensive job.
62-
# - rn/ios_build_and_test:
63-
# project_path: "example/ios/example.xcodeproj"
64-
# device: "iPhone X"
65-
# build_configuration: "Debug"
66-
# scheme: "Example"
67-
# requires:
68-
# - analyse
44+
- analyse
45+
- rn/android_test:
46+
detox_configuration: "android.emu.release"
47+
requires:
48+
- build_android_release
49+
- rn/ios_build_and_test:
50+
project_path: "example/ios/example.xcodeproj"
51+
device: "iPhone X"
52+
build_configuration: "Release"
53+
scheme: "example"
54+
detox_configuration: "ios.sim.release"
55+
requires:
56+
- analyse

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
###
44

5+
- [#7] Adding Readme.md and docs
56
- [#6] Detox tests added
67
- [#5] Adjust CHANGELOG.md to have links at bottom of markdown
78
- [#4] Fixing iOS React import and cleaning iOS example project
@@ -11,3 +12,4 @@
1112
[#4]: https://github.com/react-native-community/react-native-datetimepicker/pull/4
1213
[#5]: https://github.com/react-native-community/react-native-datetimepicker/pull/5
1314
[#6]: https://github.com/react-native-community/react-native-datetimepicker/pull/6
15+
[#7]: https://github.com/react-native-community/react-native-datetimepicker/pull/7

0 commit comments

Comments
 (0)