fix(core): update

This commit is contained in:
Philipp Kunz 2023-06-13 23:23:11 +02:00
parent bbcfa63944
commit 2dd803fdc2
4 changed files with 4396 additions and 9 deletions

View File

@ -15,18 +15,18 @@
"buildDocs": "tsdoc" "buildDocs": "tsdoc"
}, },
"devDependencies": { "devDependencies": {
"@gitzone/tsbuild": "^2.1.65", "@gitzone/tsbuild": "^2.1.66",
"@gitzone/tsrun": "^1.2.37", "@gitzone/tsrun": "^1.2.42",
"@gitzone/tstest": "^1.0.73", "@gitzone/tstest": "^1.0.74",
"@pushrocks/tapbundle": "^5.0.4", "@pushrocks/tapbundle": "^5.0.4",
"@types/node": "^18.6.4" "@types/node": "^20.3.0"
}, },
"dependencies": { "dependencies": {
"@pushrocks/smartdns": "^5.0.2", "@pushrocks/smartdns": "^5.0.4",
"@pushrocks/smartfile": "^10.0.4", "@pushrocks/smartfile": "^10.0.7",
"@pushrocks/smartmustache": "^3.0.2", "@pushrocks/smartmustache": "^3.0.2",
"@pushrocks/smartpath": "^5.0.5", "@pushrocks/smartpath": "^5.0.5",
"@pushrocks/smartrequest": "^2.0.10" "@pushrocks/smartrequest": "^2.0.15"
}, },
"files": [ "files": [
"ts/**/*", "ts/**/*",

4386
pnpm-lock.yaml 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/smartmail', name: '@pushrocks/smartmail',
version: '1.0.22', version: '1.0.23',
description: 'a unified format for representing and dealing with mails' description: 'a unified format for representing and dealing with mails'
} }

View File

@ -5,6 +5,7 @@
"target": "ES2022", "target": "ES2022",
"module": "ES2022", "module": "ES2022",
"moduleResolution": "nodenext", "moduleResolution": "nodenext",
"esModuleInterop": true "esModuleInterop": true,
"verbatimModuleSyntax": true,
} }
} }