Compare commits
6 Commits
Author | SHA1 | Date | |
---|---|---|---|
d537d04fb6 | |||
b1586354e9 | |||
ccae316e29 | |||
5de6e1d591 | |||
7fe5f98477 | |||
ce9f998da8 |
@ -119,6 +119,6 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
npmci node install stable
|
npmci node install stable
|
||||||
npmci npm install
|
npmci npm install
|
||||||
pnpm install -g @gitzone/tsdoc
|
pnpm install -g @git.zone/tsdoc
|
||||||
npmci command tsdoc
|
npmci command tsdoc
|
||||||
continue-on-error: true
|
continue-on-error: true
|
||||||
|
16
package.json
16
package.json
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@push.rocks/webstore",
|
"name": "@push.rocks/webstore",
|
||||||
"version": "2.0.9",
|
"version": "2.0.12",
|
||||||
"private": false,
|
"private": false,
|
||||||
"description": "high performance storage in the browser using indexed db",
|
"description": "high performance storage in the browser using indexed db",
|
||||||
"main": "dist_ts/index.js",
|
"main": "dist_ts/index.js",
|
||||||
@ -14,18 +14,18 @@
|
|||||||
"buildDocs": "tsdoc"
|
"buildDocs": "tsdoc"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@gitzone/tsbuild": "^2.1.66",
|
"@git.zone/tsbuild": "^2.1.70",
|
||||||
"@gitzone/tsrun": "^1.2.44",
|
"@git.zone/tsrun": "^1.2.46",
|
||||||
"@gitzone/tstest": "^1.0.77",
|
"@git.zone/tstest": "^1.0.81",
|
||||||
"@push.rocks/smartntml": "^2.0.4",
|
"@push.rocks/smartntml": "^2.0.4",
|
||||||
"@push.rocks/tapbundle": "^5.0.12",
|
"@push.rocks/tapbundle": "^5.0.15",
|
||||||
"@types/node": "^20.4.5"
|
"@types/node": "^20.8.0"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@apiglobal/typedrequest-interfaces": "^2.0.1",
|
"@apiglobal/typedrequest-interfaces": "^2.0.1",
|
||||||
"@push.rocks/lik": "^6.0.3",
|
"@push.rocks/lik": "^6.0.5",
|
||||||
"@push.rocks/smartenv": "^5.0.5",
|
"@push.rocks/smartenv": "^5.0.5",
|
||||||
"@push.rocks/smartjson": "^5.0.6",
|
"@push.rocks/smartjson": "^5.0.10",
|
||||||
"@push.rocks/smartpromise": "^4.0.3",
|
"@push.rocks/smartpromise": "^4.0.3",
|
||||||
"@push.rocks/smartrx": "^3.0.6",
|
"@push.rocks/smartrx": "^3.0.6",
|
||||||
"fake-indexeddb": "^4.0.2",
|
"fake-indexeddb": "^4.0.2",
|
||||||
|
2202
pnpm-lock.yaml
generated
2202
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
@ -3,6 +3,6 @@
|
|||||||
*/
|
*/
|
||||||
export const commitinfo = {
|
export const commitinfo = {
|
||||||
name: '@push.rocks/webstore',
|
name: '@push.rocks/webstore',
|
||||||
version: '2.0.9',
|
version: '2.0.12',
|
||||||
description: 'high performance storage in the browser using indexed db'
|
description: 'high performance storage in the browser using indexed db'
|
||||||
}
|
}
|
||||||
|
@ -7,7 +7,6 @@ export interface IWebStoreOptions {
|
|||||||
|
|
||||||
export class WebStore<T = any> {
|
export class WebStore<T = any> {
|
||||||
public db: plugins.idb.IDBPDatabase;
|
public db: plugins.idb.IDBPDatabase;
|
||||||
public objectStore: plugins.idb.IDBPObjectStore;
|
|
||||||
public options: IWebStoreOptions;
|
public options: IWebStoreOptions;
|
||||||
private initCalled: boolean = false;
|
private initCalled: boolean = false;
|
||||||
private readyDeferred = plugins.smartpromise.defer();
|
private readyDeferred = plugins.smartpromise.defer();
|
||||||
|
Reference in New Issue
Block a user