From 207a05b16ec2ed39e6abe40fbf0deb1bee7fbd44 Mon Sep 17 00:00:00 2001 From: ryoppippi <1560508+ryoppippi@users.noreply.github.com> Date: Thu, 6 Jun 2024 00:06:07 +0100 Subject: [PATCH] feat(jsr.json): change main export path The main export path in jsr.json has been changed from "." to "./index". This change is to improve the clarity of the export structure. --- packages/unplugin-typia/jsr.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/unplugin-typia/jsr.json b/packages/unplugin-typia/jsr.json index e54f571d..c441d47a 100644 --- a/packages/unplugin-typia/jsr.json +++ b/packages/unplugin-typia/jsr.json @@ -2,7 +2,7 @@ "name": "@ryoppippi/unplugin-typia", "version": "0.2.0", "exports": { - ".": "./src/index.ts", + "./index": "./src/index.ts", "./api": "./src/api.ts", "./vite": "./src/vite.ts", "./webpack": "./src/webpack.ts",