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
I noticed when installed from npm, the source map files (.map) reference non-existing source files, e.g. "sources":["../src/itty-durable.js"]
one other change I think can be made is replacing const { state, ...persistable } = this.getPersistable() with const persistable = this.getPersistable() as I think the get function already filters out the state property
cheers!
The text was updated successfully, but these errors were encountered:
Hi kwhitley, thanks for this incredible library!
I noticed when installed from npm, the source map files (.map) reference non-existing source files, e.g.
"sources":["../src/itty-durable.js"]
one other change I think can be made is replacing
const { state, ...persistable } = this.getPersistable()
withconst persistable = this.getPersistable()
as I think the get function already filters out thestate
propertycheers!
The text was updated successfully, but these errors were encountered: