From 7e93f9a25b7a5fd78bfa8c66d557eae1a9fd2e6e Mon Sep 17 00:00:00 2001 From: Pavel Kuznetsov Date: Tue, 11 Nov 2025 19:01:52 +0200 Subject: [PATCH] Add archive recipe --- .gitignore | 1 + CHANGELOG.md | 2 +- justfile | 8 ++++++++ 3 files changed, 10 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 40bffd22..610a0ca0 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ .yarn +hypertrack-sdk-react-native-*.tgz # OSX # diff --git a/CHANGELOG.md b/CHANGELOG.md index 75875944..1035248c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/justfile b/justfile index 254da5cd..ce7fcbab 100644 --- a/justfile +++ b/justfile @@ -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 @@ -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: