Skip to content

Commit ae033f9

Browse files
authored
Merge pull request #140 from apollographql/NeoPhi/prep-0.5.8
prep 0.5.8
2 parents c4ad7ee + 534cab1 commit ae033f9

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,13 @@
22

33
### vNEXT
44

5-
### 0.5.7
5+
### 0.5.8
6+
- Bump iterall version
67

8+
### 0.5.7
79
- Add `[email protected]` to `peerDependencies`.
810

911
### 0.5.6
10-
1112
- Add `[email protected]` to `peerDependencies`.
1213

1314
### 0.5.5

package.json

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,20 @@
11
{
22
"name": "graphql-subscriptions",
3-
"version": "0.5.7",
3+
"version": "0.5.8",
44
"description": "GraphQL subscriptions for node.js",
55
"main": "dist/index.js",
66
"repository": {
77
"type": "git",
88
"url": "https://github.com/apollostack/graphql-subscriptions.git"
99
},
1010
"dependencies": {
11-
"iterall": "^1.1.3"
11+
"iterall": "^1.2.1"
1212
},
1313
"peerDependencies": {
1414
"graphql": "^0.10.5 || ^0.11.3 || ^0.12.0 || ^0.13.0"
1515
},
1616
"scripts": {
17+
"clean": "rimraf dist coverage",
1718
"compile": "tsc",
1819
"pretest": "npm run compile",
1920
"test": "npm run testonly --",
@@ -22,7 +23,8 @@
2223
"watch": "tsc -w",
2324
"testonly": "mocha --reporter spec --full-trace ./dist/test/tests.js ./dist/test/asyncIteratorSubscription.js ",
2425
"coverage": "node ./node_modules/istanbul/lib/cli.js cover _mocha -- --full-trace ./dist/test/tests.js",
25-
"postcoverage": "remap-istanbul --input coverage/coverage.raw.json --type lcovonly --output coverage/lcov.info"
26+
"postcoverage": "remap-istanbul --input coverage/coverage.raw.json --type lcovonly --output coverage/lcov.info",
27+
"prepublishOnly": "npm run clean && npm run compile"
2628
},
2729
"devDependencies": {
2830
"@types/graphql": "^0.11.3",
@@ -34,6 +36,7 @@
3436
"istanbul": "^1.0.0-alpha.2",
3537
"mocha": "^3.3.0",
3638
"remap-istanbul": "^0.9.1",
39+
"rimraf": "^2.6.2",
3740
"sinon": "^3.2.1",
3841
"sinon-chai": "^2.9.0",
3942
"tslint": "^5.2.0",

0 commit comments

Comments
 (0)