Skip to content

Commit

Permalink
feat: upgrade project and migrate examples app to expo (#150)
Browse files Browse the repository at this point in the history
  • Loading branch information
jakex7 authored Sep 4, 2023
1 parent 5bd16a1 commit 45dc54d
Show file tree
Hide file tree
Showing 155 changed files with 13,382 additions and 10,467 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ jobs:
eslint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version: 14
- uses: c-hive/gha-yarn-cache@v1
- name: Install node modules
node-version: 18
cache: yarn
- name: Install dependencies
run: yarn
- name: lint
run: yarn lint
14 changes: 7 additions & 7 deletions .github/workflows/tsc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ jobs:
tsc:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version: 14
- uses: c-hive/gha-yarn-cache@v1
- name: Install node modules
node-version: 18
cache: yarn
- name: Install dependencies
run: yarn
- name: typescript
run: yarn typescript
- name: typecheck
run: yarn typecheck
14 changes: 12 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,22 @@ project.xcworkspace

# Android/IJ
#
.idea
.classpath
.cxx
.gradle
.idea
.project
.settings
local.properties
android.iml

# Cocoapods
#
example/ios/Pods

# Ruby
example/vendor/

# node.js
#
node_modules/
Expand All @@ -54,7 +61,10 @@ android/app/libs
android/keystores/debug.keystore

# Expo
.expo/*
.expo/

# Turborepo
.turbo/

# generated by bob
lib/
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
16.18.1
1 change: 1 addition & 0 deletions .watchmanconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{}
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,7 @@

![Build status - typescript compile](https://img.shields.io/github/actions/workflow/status/TheWidlarzGroup/rn-emoji-keyboard/tsc.yml?branch=master)
![License badge](https://img.shields.io/npm/l/rn-emoji-keyboard)

![Latest, released version](https://img.shields.io/github/v/release/TheWidlarzGroup/rn-emoji-keyboard)

![Date of latest commit](https://img.shields.io/github/last-commit/TheWidlarzGroup/rn-emoji-keyboard)
![Number of contributors](https://img.shields.io/github/contributors/TheWidlarzGroup/rn-emoji-keyboard)

Expand Down
9 changes: 6 additions & 3 deletions docs/src/pages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ export default function Home() {
return (
<Layout
title={`Hello from ${siteConfig.title}`}
description="Description will go into a meta tag in <head />">
description="Description will go into a meta tag in <head />"
>
<div className="home_container">
<div className="home_titleBox abstract_flex_center home_abstract_title">
<h1 align="center" className="home_abstract_title">
Expand All @@ -28,13 +29,15 @@ export default function Home() {
</div>
<Link
to="docs/documentation/about"
className="home_documentationBox abstract_flex_center home_abstract_squareBtn">
className="home_documentationBox abstract_flex_center home_abstract_squareBtn"
>
<span className="home_title home_abstract_title">📄 Documentation</span>
</Link>
<a
href="https://github.com/TheWidlarzGroup/rn-emoji-keyboard"
target="_blank"
className="home_githubBox abstract_flex_center home_abstract_squareBtn">
className="home_githubBox abstract_flex_center home_abstract_squareBtn"
>
<GithubImage />
<span className="home_githubTitle home_abstract_title">GitHub</span>
</a>
Expand Down
216 changes: 0 additions & 216 deletions example/android/app/build.gradle

This file was deleted.

Binary file removed example/android/app/debug.keystore
Binary file not shown.
10 changes: 0 additions & 10 deletions example/android/app/proguard-rules.pro

This file was deleted.

8 changes: 0 additions & 8 deletions example/android/app/src/debug/AndroidManifest.xml

This file was deleted.

Loading

0 comments on commit 45dc54d

Please sign in to comment.