From 65d5d1f6d3f9f80d9c9857cb44bb1300aa334f35 Mon Sep 17 00:00:00 2001 From: Philipp Kunz Date: Fri, 17 May 2024 16:36:56 +0200 Subject: [PATCH] fix(core): update --- pnpm-lock.yaml | 16 ++++++++-------- ts/00_commitinfo_data.ts | 2 +- ts/webstore.plugins.ts | 2 +- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index af395d4..7434f74 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -26,12 +26,12 @@ importers: '@push.rocks/smartrx': specifier: ^3.0.7 version: 3.0.7 + '@tempfix/idb': + specifier: ^8.0.3 + version: 8.0.3 fake-indexeddb: specifier: ^5.0.2 version: 5.0.2 - idb: - specifier: ^8.0.0 - version: 8.0.0 devDependencies: '@git.zone/tsbuild': specifier: ^2.1.76 @@ -608,6 +608,9 @@ packages: resolution: {integrity: sha512-+PmQX0PiAYPMeVYe237LJAYvOMYW1j2rH5YROyS3b4CTVJum34HfRvKvAzozHAQG0TnHNdUfY9nCeUyRAs//cw==} engines: {node: '>=14.16'} + '@tempfix/idb@8.0.3': + resolution: {integrity: sha512-hPJQKO7+oAIY+pDNImrZ9QAINbz9KmwT+yO4iRVwdPanok2YKpaUxdJzIvCUwY0YgAawlvYdffbLvRLV5hbs2g==} + '@tempfix/watcher@2.3.0': resolution: {integrity: sha512-a2qVQffcrnetehvwsN+LdipxQ6jejwZLgAvS9/91+C0gP4CKyikY01c0tSs0I4tSL7qHdCw1Fx0quLw+A9uyLA==} @@ -1620,9 +1623,6 @@ packages: idb@7.1.1: resolution: {integrity: sha512-gchesWBzyvGHRO9W8tzUWFDycow5gwjvFKfyV9FF32Y7F50yZMp7mP+T2mJIWFx49zicqyC4uefHM17o6xKIVQ==} - idb@8.0.0: - resolution: {integrity: sha512-l//qvlAKGmQO31Qn7xdzagVPPaHTxXx199MhrAFuVBTPqydcPYBWjkrbv4Y0ktB+GmWOiwHl237UUOrLmQxLvw==} - ieee754@1.2.1: resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} @@ -3925,6 +3925,8 @@ snapshots: dependencies: defer-to-connect: 2.0.1 + '@tempfix/idb@8.0.3': {} + '@tempfix/watcher@2.3.0': dependencies: stubborn-fs: 1.2.5 @@ -5138,8 +5140,6 @@ snapshots: idb@7.1.1: {} - idb@8.0.0: {} - ieee754@1.2.1: {} ignore@5.3.1: {} diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index 0062e7b..f8467b6 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@push.rocks/webstore', - version: '2.0.15', + version: '2.0.16', description: 'high performance storage in the browser using indexed db' } diff --git a/ts/webstore.plugins.ts b/ts/webstore.plugins.ts index 9b175f4..d249fc2 100644 --- a/ts/webstore.plugins.ts +++ b/ts/webstore.plugins.ts @@ -13,6 +13,6 @@ import * as typedrequestInterfaces from '@apiglobal/typedrequest-interfaces'; export { typedrequestInterfaces }; // thirdparty scope -import * as idb from 'idb'; +import * as idb from '@tempfix/idb'; export { idb };