From 1ede57662925983542f78f0096d9299ca1dbc973 Mon Sep 17 00:00:00 2001 From: Craig Beck Date: Wed, 11 Oct 2023 12:38:21 -0700 Subject: [PATCH] Remove exports of ./lib/* as majro version and exports changes require consumer updates anyway --- package.json | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index a254d2f1..8a4eecfa 100644 --- a/package.json +++ b/package.json @@ -10,13 +10,12 @@ "main": "dist/index.js", "exports": { ".": "./dist/index.js", + "./components": "./dist/components.js", "./parsing": "./dist/parsing/index.js", "./templates": "./dist/templates/index.js", "./App": "./dist/App.js", - "./lib/App": "./dist/App.js", "./AppForServer": "./dist/AppForServer.js", - "./lib/components": "./dist/components.js", - "./lib/Page": "./dist/Page.js", + "./Page": "./dist/Page.js", "./test-utils": "./test-utils/index.js", "./test-utils/*": "./test-utils/*.js" },