Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
.yarn
hypertrack-sdk-react-native-*.tgz

# OSX
#
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [14.0.5] - 2025-11-10

### Changed
### Fixed

- Fixed HyperTrack SDK iOS version to [5.12.0](https://github.com/hypertrack/sdk-ios/releases/tag/5.12.0)

Expand Down
8 changes: 8 additions & 0 deletions justfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# do not create a shorcut for `publish` command to avoid accidental publishing
alias b := build
alias ba := build-archive
alias c := clean
alias cncfq := copy-native-code-from-quickstart
alias cnfi := copy-native-code-from-ionic
Expand Down Expand Up @@ -38,6 +39,13 @@ build: get-dependencies docs format
yarn --cwd plugin_android_location_services_google_19_0_1 prepare
yarn --cwd plugin_android_push_service_firebase prepare

[working-directory: 'sdk']
build-archive:
#!/usr/bin/env sh
set -euo pipefail
VERSION=$(just version)
yarn pack --filename ../hypertrack-sdk-react-native-$VERSION.tgz

clean: _clear-node-modules

_clear-node-modules:
Expand Down