svelte-intersection-observer
Advanced tools
Comparing version 0.10.1 to 0.10.2
@@ -8,2 +8,8 @@ # Changelog | ||
## [0.10.2](https://github.com/metonym/svelte-intersection-observer/releases/tag/v0.10.2) - 2023-07-20 | ||
**Fixes** | ||
- add `exports` field to `package.json` | ||
## [0.10.1](https://github.com/metonym/svelte-intersection-observer/releases/tag/v0.10.1) - 2023-07-20 | ||
@@ -10,0 +16,0 @@ |
{ | ||
"name": "svelte-intersection-observer", | ||
"version": "0.10.1", | ||
"version": "0.10.2", | ||
"license": "MIT", | ||
@@ -11,2 +11,16 @@ "description": "Detect if an element is in the viewport using the Intersection Observer API", | ||
"types": "./types/index.d.ts", | ||
"exports": { | ||
".": { | ||
"types": "./types/index.d.ts", | ||
"svelte": "./src/index.js" | ||
}, | ||
"./src/*.svelte": { | ||
"types": "./types/*.svelte.d.ts", | ||
"import": "./src/*.svelte" | ||
}, | ||
"./src/*": { | ||
"types": "./types/*.d.ts", | ||
"import": "./src/*.js" | ||
} | ||
}, | ||
"scripts": { | ||
@@ -13,0 +27,0 @@ "dev": "rollup -cw", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
56487