fix(core): update

This commit is contained in:
Philipp Kunz 2024-05-30 18:57:10 +02:00
parent 8329bb902f
commit 993c4e07bc
5 changed files with 3 additions and 9 deletions

View File

@ -22,7 +22,6 @@
"@types/node": "^20.12.13"
},
"dependencies": {
"@api.global/typedrequest": "^3.0.25",
"@push.rocks/smartpromise": "^4.0.2",
"@push.rocks/smartrequest": "^2.0.15"
},

View File

@ -8,9 +8,6 @@ importers:
.:
dependencies:
'@api.global/typedrequest':
specifier: ^3.0.25
version: 3.0.25
'@push.rocks/smartpromise':
specifier: ^4.0.2
version: 4.0.3

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@push.rocks/smartguard',
version: '3.0.0',
version: '3.0.1',
description: 'A TypeScript library for creating and managing validation guards, aiding in data validation and security checks.'
}

View File

@ -16,8 +16,4 @@ export class Guard<T> {
const result = await this.guardFunction(dataArg);
return result;
}
public async execForTR() {
}
}

View File

@ -1,4 +1,6 @@
// @push.rocks scope
import * as smartpromise from '@push.rocks/smartpromise';
// pushrocks scope
export { smartpromise };