2 Commits

Author SHA1 Message Date
b6c4ef568a 1.0.16 2023-01-08 09:18:41 +01:00
c7682e4cc5 fix(core): update 2023-01-08 09:18:41 +01:00
5 changed files with 4320 additions and 11305 deletions

11298
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -1,6 +1,6 @@
{ {
"name": "@pushrocks/smartcache", "name": "@pushrocks/smartcache",
"version": "1.0.15", "version": "1.0.16",
"private": false, "private": false,
"description": "cache things in smart ways", "description": "cache things in smart ways",
"main": "dist_ts/index.js", "main": "dist_ts/index.js",
@@ -17,16 +17,14 @@
"@gitzone/tsrun": "^1.2.37", "@gitzone/tsrun": "^1.2.37",
"@gitzone/tstest": "^1.0.71", "@gitzone/tstest": "^1.0.71",
"@pushrocks/tapbundle": "^5.0.3", "@pushrocks/tapbundle": "^5.0.3",
"@types/node": "^18.0.0", "@types/node": "^18.0.0"
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0"
}, },
"dependencies": { "dependencies": {
"@pushrocks/smartdelay": "^2.0.13", "@pushrocks/smartdelay": "^2.0.13",
"@pushrocks/smarterror": "^2.0.1", "@pushrocks/smarterror": "^2.0.1",
"@pushrocks/smarthash": "^3.0.1", "@pushrocks/smarthash": "^3.0.1",
"@pushrocks/smartpromise": "^3.1.7", "@pushrocks/smartpromise": "^3.1.7",
"@pushrocks/smarttime": "^3.0.45" "@pushrocks/smarttime": "^4.0.1"
}, },
"files": [ "files": [
"ts/**/*", "ts/**/*",

4314
pnpm-lock.yaml generated Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@pushrocks/smartcache', name: '@pushrocks/smartcache',
version: '1.0.15', version: '1.0.16',
description: 'cache things in smart ways' description: 'cache things in smart ways'
} }

View File

@@ -4,6 +4,7 @@
"useDefineForClassFields": false, "useDefineForClassFields": false,
"target": "ES2022", "target": "ES2022",
"module": "ES2022", "module": "ES2022",
"moduleResolution": "nodenext" "moduleResolution": "nodenext",
"esModuleInterop": true
} }
} }