From 6badcf9251ee97fecde592fd5aee4dcc98071c75 Mon Sep 17 00:00:00 2001 From: Joshua Harms Date: Thu, 22 Feb 2018 13:10:28 -0600 Subject: [PATCH] Include index.ts in published files to fix webpack warning https://github.com/nozzlegear/logspect/issues/1 --- package.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 821cd44..219b7ee 100644 --- a/package.json +++ b/package.json @@ -1,12 +1,13 @@ { "name": "davenport", - "version": "2.8.1", + "version": "2.8.2", "description": "A CouchDB client for simplifying common tasks like get, list, create, update and delete. Comes complete with full TypeScript definitions.", "main": "bin/index.js", "typings": "bin/index.d.ts", "files": [ "bin/index.*", - "bin/browser.js" + "bin/browser.js", + "index.ts" ], "scripts": { "build": "rimraf ./bin && tsc -p . && npm run webpack",