From fda967d61c72499afd6373f9b251fdb84ca87f7b Mon Sep 17 00:00:00 2001 From: Piotr Monwid-Olechnowicz Date: Fri, 16 Apr 2021 01:09:45 +0200 Subject: [PATCH] fix(types): point to dist/index.d.ts instead of non-existing file Hey @hipstersmoothie, I realized why that `auto` import didn't have types. The path in `"types"` here points to a wrong place :) --- packages/cli/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/cli/package.json b/packages/cli/package.json index 683bdc3ab..f47e8e361 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -2,7 +2,7 @@ "name": "auto", "bin": "dist/bin/auto.js", "main": "dist/bin/index.js", - "types": "dist/bin/index.d.ts", + "types": "dist/index.d.ts", "description": "CLI tools to help facilitate semantic versioning based on GitHub PR labels", "version": "10.25.0", "license": "MIT",