Skip to content

Commit

Permalink
feat: Welcome to reanimated 3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
marcuzgabriel-topdk committed Sep 7, 2023
0 parents commit 27e3e14
Show file tree
Hide file tree
Showing 80 changed files with 18,294 additions and 0 deletions.
Binary file added .DS_Store
Binary file not shown.
49 changes: 49 additions & 0 deletions .github/workflows/semantic_versioning.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
name: Automatic semantic versioning
on:
push:
branches: [main, develop, alpha, beta]
jobs:
versioning:
name: Semantic versioning
runs-on: ubuntu-latest
outputs:
current_version: ${{ steps.current_version.outputs.CURRENT_VERSION }}
next_version: ${{ steps.next_version.outputs.NEXT_VERSION }}
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
token: ${{ secrets.GH_TOKEN }}

- name: Setting up node
uses: actions/setup-node@v3
with:
node-version: 'lts/*'
registry-url: 'https://npm.pkg.github.com'
cache: 'yarn'

- name: Install dependencies
run: yarn

- name: Install plugins
run: yarn add -D @semantic-release/changelog @semantic-release/git @semantic-release/exec -W

- name: Print current version
id: current_version
run: echo "CURRENT_VERSION=$(jq -r ".version" ./package.json)" >> $GITHUB_OUTPUT;

- name: Run semantic release
id: next_version
run: yarn semantic-release --extends ./releaserc.json
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}

print:
needs: versioning
runs-on: ubuntu-latest
steps:
- name: Print version numbers
run: |
echo "Current version is: ${{ needs.versioning.outputs.CURRENT_VERSION }}"
echo "Next version is: ${{ needs.versioning.outputs.NEXT_VERSION }}"
82 changes: 82 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
.env
.sonarlint
.sonar_lock
.scannerwork
.build-tools
coverage
install.log
/screenshots
/.build-tools/
/android/.gradle
/android/.idea
/android/.settings
/android/app/build/*/**
/android/app/.cxx/**
/android/*/**.jks

# OSX
changes.txt

# Xcode
ios/build/
ios/artifacts/
*.pbxuser
!default.pbxuser
*.mode1v3
!default.mode1v3
*.mode2v3
!default.mode2v3
*.perspectivev3
!default.perspectivev3
xcuserdata
*.xccheckout
*.moved-aside
DerivedData
*.hmap
*.ipa
*.dSYM.zip
*.xcuserstate

# Android/IntelliJ
android/.gradle
android/.idea
android/.settings
android/app/.cxx/**
android/app/release/app-release.aab
android/app/build/
.idea
.gradle
local.properties
*.iml
*.hprof

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

# BUCK
buck-out/
\.buckd/
*.keystore
!debug.keystore

# 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

# Ruby / CocoaPods
ios/Pods/
vendor/bundle/
appcenter/*
test-report.xml

# TypeScript
dist
/lib
36 changes: 36 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
## [1.1.6](https://github.com/marcuzgabriel/react-native-reanimated-skeleton/compare/v1.1.5...v1.1.6) (2023-09-07)


### Bug Fixes

* Main reference ([728e426](https://github.com/marcuzgabriel/react-native-reanimated-skeleton/commit/728e426e96ae9caa5b955bd34f4b80a1c6a6de58))

## [1.1.5](https://github.com/marcuzgabriel/react-native-reanimated-skeleton/compare/v1.1.4...v1.1.5) (2023-09-07)


### Bug Fixes

* peerDependencies ([b5f87ee](https://github.com/marcuzgabriel/react-native-reanimated-skeleton/commit/b5f87ee5d684f31d0a52eb803ccd5bea32926110))

## [1.1.4](https://github.com/marcuzgabriel/react-native-reanimated-skeleton/compare/v1.1.3...v1.1.4) (2023-09-07)


### Bug Fixes

* Minors ([e47ecec](https://github.com/marcuzgabriel/react-native-reanimated-skeleton/commit/e47ecec19a5d437f8946128eef5c6058980b30fd))
* Remove internal package ([7a0c1d8](https://github.com/marcuzgabriel/react-native-reanimated-skeleton/commit/7a0c1d8d8e6f921aaa8a25fb5b1e0c00051aae37))
* Types ([d4890ca](https://github.com/marcuzgabriel/react-native-reanimated-skeleton/commit/d4890ca5509eded2f9ea9577b5c594f46e26428d))

## [1.1.3](https://github.com/marcuzgabriel/react-native-reanimated-skeleton/compare/v1.1.2...v1.1.3) (2023-09-07)


### Bug Fixes

* Naming ([d19ca39](https://github.com/marcuzgabriel/react-native-reanimated-skeleton/commit/d19ca3908ea01ecddea483b4c40c2d0f67e64889))

## [1.1.2](https://github.com/marcuzgabriel/react-native-reanimated-skeleton/compare/v1.1.1...v1.1.2) (2023-09-07)


### Bug Fixes

* Releaserc.json ([bde2b5c](https://github.com/marcuzgabriel/react-native-reanimated-skeleton/commit/bde2b5c1e6b2c05f167771f8e58b9e598b923d59))
6 changes: 6 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
source 'https://rubygems.org'

# You may use http://rbenv.org/ or https://rvm.io/ to install and use this version
ruby ">= 2.6.10"

gem 'cocoapods', '~> 1.12'
100 changes: 100 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,100 @@
GEM
remote: https://rubygems.org/
specs:
CFPropertyList (3.0.6)
rexml
activesupport (6.1.7.6)
concurrent-ruby (~> 1.0, >= 1.0.2)
i18n (>= 1.6, < 2)
minitest (>= 5.1)
tzinfo (~> 2.0)
zeitwerk (~> 2.3)
addressable (2.8.5)
public_suffix (>= 2.0.2, < 6.0)
algoliasearch (1.27.5)
httpclient (~> 2.8, >= 2.8.3)
json (>= 1.5.1)
atomos (0.1.3)
claide (1.1.0)
cocoapods (1.12.1)
addressable (~> 2.8)
claide (>= 1.0.2, < 2.0)
cocoapods-core (= 1.12.1)
cocoapods-deintegrate (>= 1.0.3, < 2.0)
cocoapods-downloader (>= 1.6.0, < 2.0)
cocoapods-plugins (>= 1.0.0, < 2.0)
cocoapods-search (>= 1.0.0, < 2.0)
cocoapods-trunk (>= 1.6.0, < 2.0)
cocoapods-try (>= 1.1.0, < 2.0)
colored2 (~> 3.1)
escape (~> 0.0.4)
fourflusher (>= 2.3.0, < 3.0)
gh_inspector (~> 1.0)
molinillo (~> 0.8.0)
nap (~> 1.0)
ruby-macho (>= 2.3.0, < 3.0)
xcodeproj (>= 1.21.0, < 2.0)
cocoapods-core (1.12.1)
activesupport (>= 5.0, < 8)
addressable (~> 2.8)
algoliasearch (~> 1.0)
concurrent-ruby (~> 1.1)
fuzzy_match (~> 2.0.4)
nap (~> 1.0)
netrc (~> 0.11)
public_suffix (~> 4.0)
typhoeus (~> 1.0)
cocoapods-deintegrate (1.0.5)
cocoapods-downloader (1.6.3)
cocoapods-plugins (1.0.0)
nap
cocoapods-search (1.0.1)
cocoapods-trunk (1.6.0)
nap (>= 0.8, < 2.0)
netrc (~> 0.11)
cocoapods-try (1.2.0)
colored2 (3.1.2)
concurrent-ruby (1.2.2)
escape (0.0.4)
ethon (0.16.0)
ffi (>= 1.15.0)
ffi (1.15.5)
fourflusher (2.3.1)
fuzzy_match (2.0.4)
gh_inspector (1.1.3)
httpclient (2.8.3)
i18n (1.14.1)
concurrent-ruby (~> 1.0)
json (2.6.3)
minitest (5.20.0)
molinillo (0.8.0)
nanaimo (0.3.0)
nap (1.1.0)
netrc (0.11.0)
public_suffix (4.0.7)
rexml (3.2.6)
ruby-macho (2.5.1)
typhoeus (1.4.0)
ethon (>= 0.9.0)
tzinfo (2.0.6)
concurrent-ruby (~> 1.0)
xcodeproj (1.22.0)
CFPropertyList (>= 2.3.3, < 4.0)
atomos (~> 0.1.3)
claide (>= 1.0.2, < 2.0)
colored2 (~> 3.1)
nanaimo (~> 0.3.0)
rexml (~> 3.2.4)
zeitwerk (2.6.11)

PLATFORMS
ruby

DEPENDENCIES
cocoapods (~> 1.12)

RUBY VERSION
ruby 2.6.10p210

BUNDLED WITH
1.17.2
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# react-native-reanimated-skeleton
Loading

0 comments on commit 27e3e14

Please sign in to comment.