Add package.json to exports map (#5660)

pull/5669/head
Ben McCann 4 years ago committed by GitHub
parent fdd750db21
commit 627aae8c5c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1,5 +1,9 @@
# Svelte changelog # Svelte changelog
## Unreleased
* Include `./package.json` in export map ([#5659](https://github.com/sveltejs/svelte/issues/5659))
## 3.29.5 ## 3.29.5
* Fix `$$props` and `$$restProps` when compiling to a custom element ([#5482](https://github.com/sveltejs/svelte/issues/5482)) * Fix `$$props` and `$$restProps` when compiling to a custom element ([#5482](https://github.com/sveltejs/svelte/issues/5482))

@ -19,6 +19,7 @@
"README.md" "README.md"
], ],
"exports": { "exports": {
"./package.json": "./package.json",
".": { ".": {
"import": "./index.mjs", "import": "./index.mjs",
"require": "./index.js" "require": "./index.js"

Loading…
Cancel
Save