From d400115584bcdfcca58876e79a0612e5a3df4871 Mon Sep 17 00:00:00 2001 From: Peter Kelly Date: Tue, 6 Mar 2018 15:00:09 +0700 Subject: [PATCH] Fix case on typings file (for build on Linux) When building an app that uses this module on a case-sensitive filesystem, such as those used on most Linux systems, the typings file listed in package.json is not found. The file actually exists, but has the wrong case. This commit changes the typings to refer to Speech.Browser.Sdk.d.ts, not its lower-cased version, so that it will be found correctly on Linux. Fixes #72 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 40dbc7a..64c580f 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "version": "0.0.12", "description": "Microsoft Speech SDK for browsers", "main": "distrib/Speech.Browser.Sdk.js", - "types": "distrib/speech.browser.sdk.d.ts", + "types": "distrib/Speech.Browser.Sdk.d.ts", "keywords": [ "microsoft", "speech",