From 534cab18add854e73179b7d84b40c0aec8ad7a0b Mon Sep 17 00:00:00 2001 From: Daniel Rinehart Date: Thu, 22 Feb 2018 07:38:59 -0500 Subject: [PATCH] prep 0.5.8 --- CHANGELOG.md | 5 +++-- package.json | 9 ++++++--- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5bdcd2a..801a7af 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,12 +2,13 @@ ### vNEXT -### 0.5.7 +### 0.5.8 +- Bump iterall version +### 0.5.7 - Add `graphql@0.13` to `peerDependencies`. ### 0.5.6 - - Add `graphql@0.12` to `peerDependencies`. ### 0.5.5 diff --git a/package.json b/package.json index 087f51f..b01e072 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "graphql-subscriptions", - "version": "0.5.7", + "version": "0.5.8", "description": "GraphQL subscriptions for node.js", "main": "dist/index.js", "repository": { @@ -8,12 +8,13 @@ "url": "https://github.com/apollostack/graphql-subscriptions.git" }, "dependencies": { - "iterall": "^1.1.3" + "iterall": "^1.2.1" }, "peerDependencies": { "graphql": "^0.10.5 || ^0.11.3 || ^0.12.0 || ^0.13.0" }, "scripts": { + "clean": "rimraf dist coverage", "compile": "tsc", "pretest": "npm run compile", "test": "npm run testonly --", @@ -22,7 +23,8 @@ "watch": "tsc -w", "testonly": "mocha --reporter spec --full-trace ./dist/test/tests.js ./dist/test/asyncIteratorSubscription.js ", "coverage": "node ./node_modules/istanbul/lib/cli.js cover _mocha -- --full-trace ./dist/test/tests.js", - "postcoverage": "remap-istanbul --input coverage/coverage.raw.json --type lcovonly --output coverage/lcov.info" + "postcoverage": "remap-istanbul --input coverage/coverage.raw.json --type lcovonly --output coverage/lcov.info", + "prepublishOnly": "npm run clean && npm run compile" }, "devDependencies": { "@types/graphql": "^0.11.3", @@ -34,6 +36,7 @@ "istanbul": "^1.0.0-alpha.2", "mocha": "^3.3.0", "remap-istanbul": "^0.9.1", + "rimraf": "^2.6.2", "sinon": "^3.2.1", "sinon-chai": "^2.9.0", "tslint": "^5.2.0",