You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: don't depend on react-native at runtime
This causes issues in projects without the react-native dependency. For example, normal Next.js projects or even backend-only projects. Turns out Stashy can be used for more than just the examples!
feat: decoupled core from default export
It's now possible to import just the stashy class itself without the overhead of creating a default instance if you want!
Just import from the new /core path.
feat: better logging for Stashy backends
The _init() function lifecycle now includes the logger and a guaranteed reference to the parent Stashy instance.
This can be used for debugging the initialization process itself.
fix: declare npm devDependency explicitly
This is kind of a weird issue. Sub packages trying to use anything that relies on `npm` accidentally find this package which is installed by semantic-release and execute it instead.
This is a problem when `npm exec` is run, which the version that semantic release bundles doesn't support and Pilot.js requires for the `dev` command in the sample project...