Skip to content

Commit 7df0f9b

Browse files
authored
Merge pull request #12 from logicwind/dev
Dev -> Master
2 parents 90514b8 + 04e5a6c commit 7df0f9b

File tree

96 files changed

+15943
-1207
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

96 files changed

+15943
-1207
lines changed

.editorconfig

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# EditorConfig helps developers define and maintain consistent
2+
# coding styles between different editors and IDEs
3+
# editorconfig.org
4+
5+
root = true
6+
7+
[*]
8+
9+
indent_style = space
10+
indent_size = 2
11+
12+
end_of_line = lf
13+
charset = utf-8
14+
trim_trailing_whitespace = true
15+
insert_final_newline = true

.gitattributes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
11
*.pbxproj -text
2+
# specific for windows script files
3+
*.bat text eol=crlf

.github/workflows/publish.yml

Lines changed: 19 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,24 @@
1-
# This is a basic workflow to help you get started with Actions
2-
3-
name: CI
4-
5-
# Controls when the action will run. Triggers the workflow on push or pull request
6-
# events but only for the master branch
1+
name: '🚀 release'
72
on:
8-
push:
9-
branches: [ master ]
3+
release:
4+
types: [published]
105

11-
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
126
jobs:
13-
# This workflow contains a single job called "build"
14-
build:
15-
# The type of runner that the job will run on
7+
release:
8+
name: 🚀 release
169
runs-on: ubuntu-latest
17-
18-
# Steps represent a sequence of tasks that will be executed as part of the job
1910
steps:
20-
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
21-
- uses: actions/checkout@v2
22-
- uses: actions/setup-node@v3
23-
with:
24-
node-version: 14.17.6
25-
- name: Install Dependencies
26-
run: npm install
27-
- uses: JS-DevTools/npm-publish@v1
28-
with:
29-
token: ${{ secrets.NPM_TOKEN }}
11+
- name: 📚 checkout
12+
uses: actions/checkout@v3
13+
- name: 🟢 node
14+
uses: actions/setup-node@v3
15+
with:
16+
node-version: 20.x
17+
cache: 'npm'
18+
- name: Install Dependencies
19+
run: npm install --legacy-peer-deps
20+
- name: 🚀 publish
21+
uses: JS-DevTools/npm-publish@v2
22+
with:
23+
access: public
24+
token: ${{secrets.NPM_TOKEN}}

.gitignore

Lines changed: 45 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22
#
33
.DS_Store
44

5+
# XDE
6+
.expo/
7+
8+
# VSCode
9+
.vscode/
10+
jsconfig.json
11+
512
# Xcode
613
#
714
build/
@@ -21,44 +28,59 @@ DerivedData
2128
*.ipa
2229
*.xcuserstate
2330
project.xcworkspace
24-
package-lock.json
31+
**/.xcode.env.local
2532

26-
# Android/IntelliJ
33+
# Android/IJ
2734
#
28-
build/
29-
.idea
35+
.classpath
36+
.cxx
3037
.gradle
38+
.idea
39+
.project
40+
.settings
3141
local.properties
32-
*.iml
42+
android.iml
43+
44+
# Cocoapods
45+
#
46+
example/ios/Pods
47+
48+
# Ruby
49+
example/vendor/
3350

3451
# node.js
3552
#
3653
node_modules/
3754
npm-debug.log
55+
yarn-debug.log
3856
yarn-error.log
39-
yarn.lock
4057

4158
# BUCK
4259
buck-out/
4360
\.buckd/
44-
*.keystore
45-
!debug.keystore
61+
android/app/libs
62+
android/keystores/debug.keystore
4663

47-
# fastlane
48-
#
49-
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
50-
# screenshots whenever they are needed.
51-
# For more information about the recommended setup visit:
52-
# https://docs.fastlane.tools/best-practices/source-control/
64+
# Yarn
65+
.yarn/*
66+
!.yarn/patches
67+
!.yarn/plugins
68+
!.yarn/releases
69+
!.yarn/sdks
70+
!.yarn/versions
71+
72+
# Expo
73+
.expo/
74+
75+
# Turborepo
76+
.turbo/
5377

54-
*/fastlane/report.xml
55-
*/fastlane/Preview.html
56-
*/fastlane/screenshots
78+
# generated by bob
79+
lib/
5780

58-
# Bundle artifact
59-
*.jsbundle
81+
# React Native Codegen
82+
ios/generated
83+
android/generated
6084

61-
# CocoaPods
62-
/ios/Pods/
63-
android/barnabas.jks
64-
android/app/release/
85+
# React Native Nitro Modules
86+
nitrogen/

.nvmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
v20

.watchmanconfig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{}

.yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs

Lines changed: 541 additions & 0 deletions
Large diffs are not rendered by default.

.yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs

Lines changed: 28 additions & 0 deletions
Large diffs are not rendered by default.

.yarn/releases/yarn-3.6.1.cjs

Lines changed: 874 additions & 0 deletions
Large diffs are not rendered by default.

.yarnrc.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
nodeLinker: node-modules
2+
nmHoistingLimits: workspaces
3+
4+
plugins:
5+
- path: .yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs
6+
spec: "@yarnpkg/plugin-interactive-tools"
7+
- path: .yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs
8+
spec: "@yarnpkg/plugin-workspace-tools"
9+
10+
yarnPath: .yarn/releases/yarn-3.6.1.cjs

0 commit comments

Comments
 (0)