From ff20389bb034e52b6244390d0ae4362d9d549165 Mon Sep 17 00:00:00 2001 From: Justin Weisz Date: Mon, 27 Mar 2017 16:20:40 -0400 Subject: [PATCH 1/2] bump to version 1.2.0. removing extraneous node dependency. --- lib/tjbot.js | 2 +- package.json | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/lib/tjbot.js b/lib/tjbot.js index ffe6b76..702aa04 100644 --- a/lib/tjbot.js +++ b/lib/tjbot.js @@ -125,7 +125,7 @@ function TJBot(hardware, configuration, credentials) { /** * TJBot module version */ -TJBot.prototype.version = 'v1.1.0'; +TJBot.prototype.version = 'v1.2.0'; /** * List of TJBot hardware and services. diff --git a/package.json b/package.json index fea4801..108b986 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "tjbot", "description": "Node.js library for writing TJBot recipes", - "version": "1.1.0", + "version": "1.2.0", "author": "Justin Weisz ", "bugs": { "url": "https://github.com/ibmtjbot/tjbotlib/issues" @@ -20,7 +20,6 @@ "sleep": "^5.0.0", "temp": "^0.8.3", "watson-developer-cloud": "^2.11.1", - "web-audio-api": "^0.2.2", "winston": "^2.3.1" }, "engines": { From 216d6313c1a78b220c885221cde39dde7d196981 Mon Sep 17 00:00:00 2001 From: Justin Weisz Date: Mon, 27 Mar 2017 17:10:05 -0400 Subject: [PATCH 2/2] removing unused library --- lib/tjbot.js | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/tjbot.js b/lib/tjbot.js index 702aa04..3f28582 100644 --- a/lib/tjbot.js +++ b/lib/tjbot.js @@ -26,7 +26,6 @@ const fs = require('fs'); const sleep = require('sleep'); const colorToHex = require('colornames'); const cm = require('color-model'); -const AudioContext = require('web-audio-api').AudioContext; const spawn = require('child_process').spawn; const winston = require('winston');