Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
e03f9a8
[NT-1751] Update eslint config to ignore RN platform folders and allo…
akfreas Oct 23, 2025
e94a083
[NT-1751] Update pnpm lockfile after removing RN-specific dependencies
akfreas Oct 23, 2025
837463d
[NT-1752] Add ScrollContext and OptimizationContext to handle viewpor…
akfreas Oct 27, 2025
320ccdd
[NT-1752] Add tracked event screen to RN implementation
akfreas Oct 27, 2025
bd3a5e1
[NT-1752] Configure RN app to enable debug logging and set consent=true
akfreas Oct 27, 2025
3e6bd22
[NT-1752] Fix lint
akfreas Oct 27, 2025
fe78020
[NT-1752] Add polyfill for crypto (not avail in RN), polyfill toArray…
akfreas Oct 27, 2025
bcd5fc5
[NT-1752] Add new Personalization and Analytics component, remove Opt…
akfreas Oct 28, 2025
3cd587d
[NT-1752] Add resolveEntryWithMetadata to add metadata to entry resol…
akfreas Oct 28, 2025
529ae21
[NT-1752] Add contentful dep to RN
akfreas Oct 28, 2025
2b1d038
[NT-1752] Fix types on testtrackingscreen, ignore file when linting
akfreas Oct 29, 2025
4036ec7
[NT-1752] Add support for tracking in non-scrollable context, fix bug…
akfreas Oct 29, 2025
de974c2
[NT-1752] Update readme and library name for eventbuilder default config
akfreas Oct 29, 2025
963ec44
[NT-1752] Set sdkInstance when initializing
akfreas Oct 29, 2025
07bbed8
[NT-1752] Remove no-console rule
akfreas Oct 29, 2025
986b973
[NT-1752] Set ref for optimization instance to avoid race condition w…
akfreas Oct 30, 2025
7175416
[NT-1752] Use mock server in RN implementation
akfreas Oct 29, 2025
b16457d
[NT-1752] Remove hasTrackedRef, only rely on analytics to deduplicate…
akfreas Oct 30, 2025
3d600ba
[NT-1752] Remove resolveEntryWithMetadata and extract values from ret…
akfreas Oct 30, 2025
91f734f
[NT-1752] Remove TestTrackingScreen ignore from eslint.config
akfreas Oct 30, 2025
d7538cd
[NT-1752] Fix lint in TestTrackingScreen
akfreas Oct 30, 2025
a455048
[NT-1752] Use newly exposed optimization return type in Personalizati…
akfreas Oct 31, 2025
f23c217
[NT-1752] Fix lint in config example
akfreas Oct 31, 2025
66df8ea
[NT-1752] Add env.config to git with safe defaults to fix lint issue
akfreas Oct 31, 2025
b16694f
[NT-1752] Consolidate gitignore, remove references to 'demo' across app
akfreas Nov 3, 2025
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
75 changes: 74 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,77 @@ playwright-report
playwright.cache
temp
test-results
tmp
tmp

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

# Android/IntelliJ
#
.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
**/Pods/
/vendor/bundle/

# Temporary files created by Metro to check the health of the file watcher
.metro-health-check*

# testing
/coverage

# Yarn
.yarn/*
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/sdks
!.yarn/versions

# Local environment configuration - commented out since we use safe defaults
# Uncomment this line if you need to override with local secrets
# env.config.ts
74 changes: 0 additions & 74 deletions implementations/react-native/.gitignore

This file was deleted.

Loading