Skip to content

Commit 09e55ef

Browse files
author
Charles Killer
authored
Merge pull request #7 from app-sapiens/buildscripts
🔨 packaging build
2 parents cab6e8f + cb76fa1 commit 09e55ef

26 files changed

+7752
-1785
lines changed

.expo/packager-info.json

Lines changed: 0 additions & 9 deletions
This file was deleted.

.gitignore

Lines changed: 50 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,50 @@
1-
node_modules
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
lerna-debug.log*
8+
9+
# Directory for instrumented libs generated by jscoverage/JSCover
10+
lib-cov
11+
12+
# Coverage directory used by tools like istanbul
13+
coverage
14+
*.lcov
15+
16+
# nyc test coverage
17+
.nyc_output
18+
19+
# node-waf configuration
20+
.lock-wscript
21+
22+
# Compiled binary addons (https://nodejs.org/api/addons.html)
23+
build/Release
24+
25+
# Dependency directories
26+
node_modules/
27+
jspm_packages/
28+
29+
# TypeScript v1 declaration files
30+
typings/
31+
32+
# TypeScript cache
33+
*.tsbuildinfo
34+
35+
# Optional npm cache directory
36+
.npm
37+
38+
# Optional eslint cache
39+
.eslintcache
40+
41+
# Output of 'npm pack'
42+
*.tgz
43+
44+
# Yarn Integrity file
45+
.yarn-integrity
46+
47+
# generate output
48+
dist
49+
50+
.expo

.npmignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
dist
2+
.babelrc
3+
.storybook
4+
.gitignore
5+
.prettierrc
6+
rollup.config.js
7+
tsconfig.json
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

App.tsx renamed to example/App.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import React from "react";
22
import { StatusBar } from "react-native";
3-
4-
import Picker from "./src/Picker";
3+
import Picker from "ios-date-picker-js";
54

65
export default () => (
76
<>

example/LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2020 App Sapiens
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

example/README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# ios-date-picker-js
2+
Cross platform reanimated implementation of iOS date picker
3+
4+
[![runs with expo](https://img.shields.io/badge/Runs%20with%20Expo-000.svg?style=flat-square&logo=EXPO&labelColor=f3f3f3&logoColor=000)](https://expo.io/)
5+
6+
[![run in expo snack](https://img.shields.io/badge/Run%20in%20Snack-4630EB.svg?style=flat-square&logo=EXPO&labelColor=FFF&logoColor=000)](https://snack.expo.io/@git/github.com/app-sapiens/ios-date-picker-js)
7+
8+
There has been a notable abscence of good JS-only date time pickers for React Native.
9+
10+
When [@wcandillion](https://github.com/wcandillon) created his Picker video I felt obliged to create this repo.
11+
12+
Help needed to make this a useable library!

0 commit comments

Comments
 (0)