@storeon/solidjs
Advanced tools
Comparing version 1.0.0 to 2.0.0
@@ -5,2 +5,6 @@ # Change Log | ||
## 2.0.0 | ||
- Drop support for solid-js < v0.22.0. | ||
## 1.0.0 | ||
@@ -7,0 +11,0 @@ |
@@ -6,5 +6,5 @@ import { | ||
useContext, | ||
onCleanup | ||
onCleanup, | ||
createComponent | ||
} from 'solid-js' | ||
import { createComponent } from 'solid-js/dom' | ||
@@ -11,0 +11,0 @@ const StoreContext = createContext() |
{ | ||
"name": "@storeon/solidjs", | ||
"version": "1.0.0", | ||
"version": "2.0.0", | ||
"description": "A tiny connector for Storeon and Solid.js", | ||
@@ -26,3 +26,3 @@ "main": "index.cjs", | ||
"peerDependencies": { | ||
"solid-js": "^0.18.0", | ||
"solid-js": "^0.22.0", | ||
"storeon": "^3.0.0" | ||
@@ -34,8 +34,10 @@ }, | ||
"exports": { | ||
"./package.json": "./package.json", | ||
".": { | ||
"require": "./index.cjs", | ||
"import": "./index.js" | ||
} | ||
"import": "./index.js", | ||
"types": "index.d.ts" | ||
}, | ||
"./package.json": "./package.json", | ||
"index.d.ts": "index.d.ts" | ||
} | ||
} |
Sorry, the diff of this file is not supported yet
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
7306