Skip to content

Commit

Permalink
Release version 2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
wesleyorbin committed Feb 13, 2023
1 parent 987dfd5 commit f739ed0
Show file tree
Hide file tree
Showing 74 changed files with 6,285 additions and 5,659 deletions.
1 change: 1 addition & 0 deletions .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
BrazeProject

# setup files
.github
.prettierrc.js
node_modules
yarn.lock
Expand Down
6 changes: 0 additions & 6 deletions BrazeProject/.buckconfig

This file was deleted.

2 changes: 2 additions & 0 deletions BrazeProject/.bundle/config
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
BUNDLE_PATH: "vendor/bundle"
BUNDLE_FORCE_RUBY_PLATFORM: 1
4 changes: 2 additions & 2 deletions BrazeProject/.eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module.exports = {
root: true,
extends: '@react-native-community',
root: true,
extends: '@react-native-community',
};
75 changes: 0 additions & 75 deletions BrazeProject/.flowconfig

This file was deleted.

63 changes: 63 additions & 0 deletions BrazeProject/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
# OSX
#
.DS_Store

# Xcode
#
build/
*.pbxuser
!default.pbxuser
*.mode1v3
!default.mode1v3
*.mode2v3
!default.mode2v3
*.perspectivev3
!default.perspectivev3
xcuserdata
*.xccheckout
*.moved-aside
DerivedData
*.hmap
*.ipa
*.xcuserstate
ios/.xcode.env.local

# Android/IntelliJ
#
build/
.idea
.gradle
local.properties
*.iml
*.hprof
.cxx/
*.keystore
!debug.keystore

# node.js
#
node_modules/
npm-debug.log
yarn-error.log

# fastlane
#
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
# screenshots whenever they are needed.
# For more information about the recommended setup visit:
# https://docs.fastlane.tools/best-practices/source-control/

**/fastlane/report.xml
**/fastlane/Preview.html
**/fastlane/screenshots
**/fastlane/test_output

# Bundle artifact
*.jsbundle

# Ruby / CocoaPods
/ios/Pods/
/vendor/bundle/

# Temporary files created by Metro to check the health of the file watcher
.metro-health-check*
1 change: 1 addition & 0 deletions BrazeProject/.node-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
18
2 changes: 2 additions & 0 deletions BrazeProject/.prettierrc.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
module.exports = {
arrowParens: 'avoid',
bracketSameLine: true,
bracketSpacing: true,
singleQuote: true,
trailingComma: 'all',
};
1 change: 1 addition & 0 deletions BrazeProject/.ruby-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
2.7.3
13 changes: 13 additions & 0 deletions BrazeProject/App.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import React from 'react';
import { SafeAreaView } from 'react-native';
import { BrazeProject } from './BrazeProject';

function App(): JSX.Element {
return (
<SafeAreaView>
<BrazeProject />
</SafeAreaView>
);
}

export default App;
Loading

0 comments on commit f739ed0

Please sign in to comment.