Merge pull request #29 from inf3cti0n95/semver-setup

ci: Added semver-release for Automated Release and TravisCI support
master
Viraj Trivedi 7 years ago committed by GitHub
commit 89c9ed005d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -0,0 +1,14 @@
language: node_js
cache:
directories:
- ~/.npm
notifications:
email: false
node_js:
- '9'
- '8'
after_success:
- npm run travis-deploy-once "npm run semantic-release"
branches:
except:
- /^v\d+\.\d+\.\d+$/

@ -1,4 +1,7 @@
# Rocket.Chat.RealTime.API.Abstraction
[![Build Status](https://travis-ci.org/inf3cti0n95/Rocket.Chat.RealTime.API.RxJS.svg?branch=master)](https://travis-ci.org/inf3cti0n95/Rocket.Chat.RealTime.API.RxJS)
Abstraction for Utilizing [Rocket.Chat](https://rocket.chat/)'s [Realtime API](https://rocket.chat/docs/developer-guides/realtime-api) Methods with [RxJS](http://reactivex.io/rxjs/)
## Installation

@ -1,6 +1,6 @@
{
"name": "rocket.chat.realtime.api.rxjs",
"version": "0.0.4",
"version": "0.0.0-development",
"description": "Abstraction for Utilizing Rocket.Chat's Realtime API Methods with RxJS",
"main": "lib/index.js",
"directories": {
@ -18,14 +18,18 @@
"jest": "^23.1.0",
"mock-socket": "^7.1.0",
"ts-jest": "^22.4.6",
"typescript": "^2.3.4"
"typescript": "^2.3.4",
"travis-deploy-once": "^5.0.0",
"semantic-release": "^15.6.0"
},
"scripts": {
"test": "jest --env=jsdom"
"test": "jest --env=jsdom",
"travis-deploy-once": "travis-deploy-once",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/inf3cti0n95/Rocket.Chat.RealTime.API.RxJS.git"
"url": "https://github.com/inf3cti0n95/Rocket.Chat.RealTime.API.RxJS.git"
},
"keywords": [
"Rocket.Chat",

Loading…
Cancel
Save