forked from trezor/trezor-suite
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
501 changed files
with
6,421 additions
and
4,857 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,220 @@ | ||
.github | ||
docker | ||
docs | ||
|
||
packages/ipc-proxy/ | ||
packages/suite/ | ||
packages/suite-analytics/ | ||
packages/suite-build/ | ||
packages/suite-data/ | ||
packages/suite-desktop/ | ||
packages/suite-desktop-api/ | ||
packages/suite-desktop-core/ | ||
packages/suite-desktop-ui/ | ||
packages/suite-storage/ | ||
packages/suite-web/ | ||
|
||
### content of all .gitignore files is not applied if .easignore is present | ||
|
||
build | ||
build-electron | ||
build-renderer | ||
.build-storybook | ||
\*.cpuprofile | ||
|
||
# Dependency directory | ||
|
||
node_modules | ||
|
||
# OSX | ||
|
||
.DS_Store | ||
|
||
# Editors | ||
|
||
.idea | ||
_.sublime-project | ||
_.sublime-workspace | ||
.vscode/\*_/_ | ||
!.vscode/\*.code-snippets | ||
|
||
# Logs | ||
|
||
logs | ||
\*.log | ||
.yarnclean | ||
|
||
.attic | ||
.env\* | ||
!.env.dev | ||
nx-cloud.env | ||
|
||
# cache | ||
|
||
_.code-workspace | ||
**docker-snapshots** | ||
**pycache**/ | ||
.cache/ | ||
.eslintcache | ||
.stylelintcache | ||
_.tsbuildinfo | ||
.nx | ||
|
||
# Vagrant | ||
|
||
.vagrant | ||
|
||
# test outputs | ||
|
||
screenshots | ||
test-results | ||
|
||
# build outputs | ||
|
||
lib | ||
libDev | ||
dist | ||
public | ||
coverage | ||
tmp | ||
|
||
## React Native section | ||
|
||
# Xcode | ||
|
||
build/ | ||
_.pbxuser | ||
!default.pbxuser | ||
_.mode1v3 | ||
!default.mode1v3 | ||
_.mode2v3 | ||
!default.mode2v3 | ||
_.perspectivev3 | ||
!default.perspectivev3 | ||
xcuserdata | ||
_.xccheckout | ||
_.moved-aside | ||
DerivedData | ||
_.hmap | ||
_.ipa | ||
_.dSYM.zip | ||
_.xcuserstate | ||
|
||
# Android/IntelliJ | ||
|
||
build/ | ||
.idea | ||
.gradle | ||
local.properties | ||
_.iml | ||
_.hprof | ||
.cxx/ | ||
\*.keystore | ||
!debug.keystore | ||
|
||
# scan temporary files | ||
|
||
\*\*/android/fastlane/test_output | ||
|
||
!**/suite-native/app/.env.debug | ||
!**/suite-native/app/.env.develop | ||
!**/suite-native/app/.env.preview | ||
!**/suite-native/app/.env.production | ||
!\*\*/suite-native/app/.env.staging | ||
|
||
# ios | ||
|
||
**/ios/\*.xcarchive | ||
**/ios/builds/\* | ||
\*\*/ios/.xcode.env.local | ||
|
||
# Ruby / CocoaPods | ||
|
||
**/ios/Pods/ | ||
**/vendor/bundle/ | ||
|
||
# Temporary files created by Metro to check the health of the file watcher | ||
|
||
.metro-health-check\* | ||
|
||
# android | ||
|
||
\*_/android/builds/_ | ||
|
||
# fastlane supply (google service account - upload key) | ||
|
||
\*\*/android/upload-key.json | ||
|
||
# Bundle artifact | ||
|
||
\*.jsbundle | ||
|
||
# Yarn 3 | ||
|
||
.yarn/_ | ||
.yarn/cache | ||
!.yarn/patches | ||
!.yarn/plugins/_ | ||
!.yarn/releases | ||
!.yarn/sdks | ||
!.yarn/versions | ||
|
||
# @trezor/suite-data | ||
|
||
packages/suite-data/files/browser-detection | ||
packages/suite-data/files/guide | ||
packages/suite-data/files/translations/master.json | ||
|
||
# @trezor/connect-explorer | ||
|
||
**/build-webextension/** | ||
|
||
# cypress download folder | ||
|
||
packages/suite-web/e2e/downloads | ||
|
||
### suite-native/app/.gitignore | ||
|
||
# Expo | ||
|
||
.expo/ | ||
web-build/ | ||
|
||
# Native | ||
|
||
suite-native/app/**/_.orig._ | ||
suite-native/app/**/_.jks | ||
suite-native/app/\*\*/_.p8 | ||
suite-native/app/**/\*.p12 | ||
suite-native/app/**/_.key | ||
suite-native/app/\*\*/_.mobileprovision | ||
|
||
# These are generated when running `expo prebuild` | ||
|
||
suite-native/app/ios | ||
suite-native/app/android | ||
|
||
# Metro | ||
|
||
.metro-health-check\* | ||
|
||
# debug | ||
|
||
npm-debug._ | ||
yarn-debug._ | ||
yarn-error.\* | ||
|
||
# macOS | ||
|
||
.DS_Store | ||
\*.pem | ||
|
||
# local env files | ||
|
||
.env | ||
!suite-native/app/.env._ | ||
.env._.local | ||
|
||
# typescript | ||
|
||
\*.tsbuildinfo |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
name: "[Bot] suite-native monthly version bump" | ||
|
||
on: | ||
schedule: | ||
# Runs on the first day of every month at 00:00 UTC | ||
- cron: "0 0 1 * *" | ||
|
||
jobs: | ||
bump_native_version: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Setup Node.js | ||
uses: actions/setup-node@v4 | ||
|
||
- name: Set Version Variable | ||
run: | | ||
YEAR=$(date +%y) | ||
MONTH=$(date +%-m) | ||
echo NEW_VERSION="$YEAR.$MONTH.1" >> $GITHUB_ENV | ||
- name: Update Version of package.json | ||
run: jq --indent 4 --arg version "$NEW_VERSION" '.suiteNativeVersion = $version' suite-native/app/package.json > temp.json && mv temp.json suite-native/app/package.json | ||
|
||
- name: Create Pull Request | ||
uses: peter-evans/create-pull-request@v6 | ||
with: | ||
title: "chore(suite-native): bump version to ${{ env.NEW_VERSION }}" | ||
body: | | ||
Automated version bump to follow YY.MM.MINOR convention | ||
- Updates version in package.json to ${{ env.NEW_VERSION }} | ||
branch: "chore/native/bump-version-to-${{ env.NEW_VERSION }}" | ||
base: "develop" | ||
delete-branch: true | ||
labels: mobile ci |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.