Skip to content

Commit

Permalink
Deploy change.
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Anderson committed Feb 4, 2020
1 parent 0d3a6e6 commit 867c8d4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,8 @@
[
"@semantic-release/exec",
{
"prepareCmd": "npm run bump ${nextRelease.version} && npm run deploy"
"prepareCmd": "npm run bump ${nextRelease.version}",
"publishCmd": "npm run deploy"
}
],
[
Expand Down
2 changes: 1 addition & 1 deletion server/helpers/subscriptionManager.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import {PubSub} from "apollo-server-express";
import EventEmitter from "events";

const ee = new EventEmitter();
const ee = new EventEmitter.EventEmitter();
ee.setMaxListeners(250);

const pubsub = new PubSub({eventEmitter: ee});
Expand Down

0 comments on commit 867c8d4

Please sign in to comment.