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
11 changes: 5 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ jobs:
- stage: test
name: "Lint and Test"
script:
- npm run lint
- npm run test
- yarn lint
- yarn test
- stage: publish-edge
name: "Publish @edge to NPM"
script:
- npm run build
- yarn build
deploy:
provider: script
skip_cleanup: true
Expand All @@ -32,7 +32,7 @@ jobs:
- stage: publish-latest
name: "Publish @latest to NPM"
script:
- npm run build
- yarn build
deploy:
provider: script
skip_cleanup: true
Expand All @@ -41,6 +41,5 @@ jobs:
all_branches: true
condition: $TRAVIS_TAG =~ ^(0|[1-9][0-9]*)\.(0|[1-9][0-9]*)\.(0|[1-9][0-9]*)$
notifications:
webhooks:
webhooks:
secure: "Y5/QLqEthobAVHPhVvuYmMoLmMzDtX3e0DSLvvLxf9ncYSn3gp2qC/nntkm8D85bHeCtGMjCoFudatCxG4oIWOB45IpXG/+3GWelVIG9GH2iiDMwY3wBSNVzDjnN/FsPA0+P01X9Hr9V3Om5vH6WXoK4yc1HoSD2yPBcRYHnhUrVat+Pokw0CQa26DH9WxvWDm8IGxJiLEI+4E7LzdWe2CK+rAgDwPKMs8wFwpOjq/FJX4amtjWqGHla3XU0AwR5E/2y6bzQseTSjBHY+Dh0KYfPOVvvyXpOwcUImBVANr7XB89wZ0Jy56ohTu1It0jMTr+r7sWKu4s7GUjpTNSam7sJhphmTguVyA634HwhjT4Uj5oSuUNIHhtobvH6y0ZnLix1Bi4lKsSjfCZ/A3vycOJ/dfBqgt7CpOCBE4i0vtLi0WoxyJG/9yr4xdo4V4JlTxGZGaK4xDNhISyk/eedODY96kqz5QnyvwuE3oN7AWNeKCXCB9prqdZWuoBoPhx1fPk0+kiPxPcyzZRSiqUvRZGX0LX5dt9iaSIQfWtFYMUCc0aLyJFxYYIoaDvsewGjluSJ1aUQIkzDZ13BXbrpg1gxhJLzHs6bPrTQRKbeMQTYIdE9tc5lPnFEhJ4zJ+MPjVXa5CwYggUe3j4p+8pVP86Fs/F5ETcPLzwjpd+T898="

13 changes: 8 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,24 +18,27 @@
"@blockone/tslint-config-blockone": "^4.0.0",
"@types/bunyan": "^1.8.5",
"@types/dockerode": "^2.5.5",
"@types/jest": "^24.0.12",
"@types/jest": "^24.0.25",
"@types/massive": "^4.6.1",
"@types/node": "^10.5.1",
"@types/request-promise-native": "^1.0.15",
"dockerode": "^2.5.5",
"jest": "^24.7.1",
"jest": "^24.9.0",
"pg-monitor": "^1.1.0",
"ts-jest": "^23.0.0",
"ts-jest": "^24.2.0",
"tslint": "^5.10.0",
"tslint-eslint-rules": "^5.3.1",
"typedoc": "^0.11.1",
"typedoc": "^0.15.6",
"typescript": "^3.4.5"
},
"dependencies": {
"@types/express": "^4.16.1",
"@types/express": "4.17.2",
"demux": "5.0.2-572",
"massive": "5.11.0"
},
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Let's version lock these deps

"resolutions": {
"lodash": "4.17.15"
},
"peerDependencies": {
"demux": "5.0.2-572"
},
Expand Down
Loading