diff options
author | 2023-08-14 09:22:01 -0500 | |
---|---|---|
committer | 2023-08-14 09:22:01 -0500 | |
commit | 5208a3c8fefcec7694857fb344af351f4631fc34 (patch) | |
tree | 7b3bffc3e5eee3312152066ed8c2ba59ef2ca164 | |
parent | 19f9edf977a24907281ddd7b3423323c3718c20e (diff) | |
download | astro-5208a3c8fefcec7694857fb344af351f4631fc34.tar.gz astro-5208a3c8fefcec7694857fb344af351f4631fc34.tar.zst astro-5208a3c8fefcec7694857fb344af351f4631fc34.zip |
fix: remove ./dist/jsx/* exports (#8030)
Diffstat (limited to '')
-rw-r--r-- | .changeset/quick-boats-bow.md | 5 | ||||
-rw-r--r-- | packages/astro/package.json | 1 |
2 files changed, 5 insertions, 1 deletions
diff --git a/.changeset/quick-boats-bow.md b/.changeset/quick-boats-bow.md new file mode 100644 index 000000000..1ab83ed5a --- /dev/null +++ b/.changeset/quick-boats-bow.md @@ -0,0 +1,5 @@ +--- +'astro': major +--- + +Removed duplicate `astro/dist/jsx` export. Please use the `astro/jsx` export instead diff --git a/packages/astro/package.json b/packages/astro/package.json index 767672f48..b21c4b334 100644 --- a/packages/astro/package.json +++ b/packages/astro/package.json @@ -64,7 +64,6 @@ "./package.json": "./package.json", "./runtime/*": "./dist/runtime/*", "./server/*": "./dist/runtime/server/*", - "./dist/jsx/*": "./dist/jsx/*", "./zod": { "types": "./zod.d.ts", "default": "./zod.mjs" |