diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100644 index eb30f804..00000000 --- a/.circleci/config.yml +++ /dev/null @@ -1,50 +0,0 @@ -version: 2.0 - -attach_workspace: &attach_workspace - attach_workspace: - at: ~/react-native-twilio-video-webrtc - -docker_defaults: &docker_defaults - docker: - - image: cimg/node:16.20 - working_directory: ~/react-native-twilio-video-webrtc - -jobs: - build: - <<: *docker_defaults - steps: - - checkout - - restore_cache: - name: Restore node_modules cache - keys: - - v1-npm-deps-{{ checksum "yarn.lock" }} - - run: - name: Node Dependencies - command: yarn install - - save_cache: - name: Save node_modules cache - key: v1-npm-deps-{{ checksum "yarn.lock" }} - paths: - - node_modules - - ~/.cache/yarn - - persist_to_workspace: - root: ~/react-native-twilio-video-webrtc - paths: - - node_modules - test: - <<: *docker_defaults - steps: - - checkout - - *attach_workspace - - run: - name: Run tests - command: yarn run ci - -workflows: - version: 2 - build_and_test: - jobs: - - build - - test: - requires: - - build diff --git a/package.json b/package.json index 5ca49213..b4616950 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,7 @@ "url": "https://github.com/blackuy/react-native-twilio-video-webrtc.git" }, "homepage": "https://github.com/blackuy/react-native-twilio-video-webrtc", - "version": "3.2.0", + "version": "3.2.1", "description": "Twilio Video WebRTC for React Native.", "main": "index.js", "scripts": { @@ -22,7 +22,10 @@ "keywords": [ "react-native" ], - "author": "", + "author": "Gaston Morixe ", + "contributors": [ + "Martin Fernandez " + ], "license": "MIT", "devDependencies": { "@types/react": "^16.9.32",