Skip to content
Merged
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
12 changes: 5 additions & 7 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -124,14 +124,12 @@ jobs:
- run: brew update-reset
- run: brew tap wix/brew
- run: brew install wix/brew/applesimutils

- restore_cache:
key: cocoapods-specs
- run:
name: Install dependencies
command: |
sudo gem install cocoapods
sudo gem install cocoapods-repo-update
- run: yarn test-app test:ios:cocoapods
- save_cache:
key: cocoapods-specs
paths:
- ~/.cocoapods
publish:
<<: *nodeJob
steps:
Expand Down
4 changes: 4 additions & 0 deletions packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
"version": "1.3.2",
"description": "The hassle-free way to add analytics to your React-Native app.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/segmentio/analytics-react-native.git"
},
"main": "build/cjs/index.js",
"module": "build/esm/index.js",
"types": "build/esm/index.d.ts",
Expand Down
6 changes: 5 additions & 1 deletion packages/integrations/src/gen-integrations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,11 @@ async function prepareJs({
main: 'index.js',
version: pkg.version,
license: pkg.license,
description: `${name} Integration for Segment's React-Native analytics library.`
description: `${name} Integration for Segment's React-Native analytics library.`,
repository: {
type: 'git',
url: 'https://github.com/segmentio/analytics-react-native.git'
}
},
null,
2
Expand Down