diff --git a/.circleci/config.yml b/.circleci/config.yml index 6c9d1d8a6..f23feefb2 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -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: diff --git a/packages/core/package.json b/packages/core/package.json index 72f489a6a..6d6f7d28b 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -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", diff --git a/packages/integrations/src/gen-integrations.ts b/packages/integrations/src/gen-integrations.ts index 7ea9537a5..67f145d50 100644 --- a/packages/integrations/src/gen-integrations.ts +++ b/packages/integrations/src/gen-integrations.ts @@ -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