Compare commits

..

10 Commits

Author SHA1 Message Date
20a81e8209 2.0.5 2022-08-01 15:50:05 +02:00
18145a27e2 fix(core): update 2022-08-01 15:50:05 +02:00
f62e0f87ce 2.0.4 2022-07-07 08:49:31 +02:00
4e74159a54 fix(core): update 2022-07-07 08:49:31 +02:00
2e8d3ca7e8 2.0.3 2022-05-29 20:04:44 +02:00
dfb4a4f62a fix(core): update 2022-05-29 20:04:44 +02:00
948957b03f 2.0.2 2022-05-28 13:40:14 +02:00
cb69bf3585 fix(core): update 2022-05-28 13:40:14 +02:00
3d27c0fada 2.0.1 2022-05-28 12:49:03 +02:00
94672fd41c fix(core): update 2022-05-28 12:49:03 +02:00
4 changed files with 4825 additions and 765 deletions

5569
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
{
"name": "@pushrocks/webstore",
"version": "2.0.0",
"version": "2.0.5",
"private": false,
"description": "high performance storage in the browser using indexed db",
"main": "dist_ts/index.js",
@ -10,23 +10,23 @@
"license": "MIT",
"scripts": {
"test": "(tstest test/ --web)",
"build": "(tsbuild --web)"
"build": "(tsbuild --web --allowimplicitany)"
},
"devDependencies": {
"@gitzone/tsbuild": "^2.1.63",
"@gitzone/tstest": "^1.0.71",
"@pushrocks/tapbundle": "^5.0.3",
"@types/node": "^17.0.36"
"@gitzone/tstest": "^1.0.72",
"@pushrocks/tapbundle": "^5.0.4",
"@types/node": "^18.6.3"
},
"dependencies": {
"@apiglobal/typedrequest-interfaces": "^1.0.15",
"@pushrocks/lik": "^6.0.0",
"@pushrocks/smartenv": "^5.0.1",
"@pushrocks/smartjson": "^4.0.6",
"@pushrocks/smartjson": "^5.0.1",
"@pushrocks/smartpromise": "^3.1.6",
"@pushrocks/smartrx": "^2.0.25",
"fake-indexeddb": "^3.1.7",
"idb": "^7.0.1"
"fake-indexeddb": "^4.0.0",
"idb": "^7.0.2"
},
"browserslist": [
"last 1 chrome versions"

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@pushrocks/webstore',
version: '2.0.0',
version: '2.0.5',
description: 'high performance storage in the browser using indexed db'
}

View File

@ -25,8 +25,7 @@ export class WebStore<T = any> {
const smartenv = new plugins.smartenv.Smartenv();
if (!smartenv.isBrowser) {
const fetch = await smartenv.getSafeNodeModule('fake-indexeddb/auto.js');
globalThis.fetch = fetch.default;
await smartenv.getSafeNodeModule('fake-indexeddb/auto');
}
this.db = await plugins.idb.openDB(this.options.dbName, 1, {