From a945ff670ed7473d64244f95d0b8df6276fa2f47 Mon Sep 17 00:00:00 2001 From: Juan Manuel Incaurgarat Date: Fri, 20 Nov 2020 16:42:12 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Bug=20FIX:=20Updated=20"types"?= =?UTF-8?q?=20directory?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit There is no `src` directory under the `types` directory, so the declarations were failing. This PR points to the correct file. Related to [#111](https://github.com/segmentio/consent-manager/pull/111). kudos to my colleague @mrseanbaines who noticed the path was wrong. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 1d9cf2f4..e15e23c2 100644 --- a/package.json +++ b/package.json @@ -12,7 +12,7 @@ "license": "MIT", "main": "commonjs/index.js", "module": "esm/index.js", - "types": "types/src/index.d.ts", + "types": "types/index.d.ts", "sideEffects": false, "files": [ "commonjs",