From c9c8da7bce167a79203ce9de8a8d0e6420a2f398 Mon Sep 17 00:00:00 2001 From: Dan Bucholtz Date: Thu, 7 Dec 2017 21:52:07 -0600 Subject: [PATCH] chore(package): fix path to main, module and types --- packages/react/package.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/react/package.json b/packages/react/package.json index d22cf75dcf..db6e969e83 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -25,9 +25,9 @@ "deploy": "np --any-branch", "tsc": "tsc -p ." }, - "main": "./dist/src/index.js", - "module": "./dist/src/index.js", - "types": "./dist/src/index.d.ts", + "main": "./dist/index.js", + "module": "./dist/index.js", + "types": "./dist/index.d.ts", "files": [ "dist/" ],