fix(build): migrate project config to .smartconfig.json and refresh package dependencies

This commit is contained in:
2026-04-14 12:40:21 +00:00
parent 476de2f59e
commit 5d3163b1aa
6 changed files with 1783 additions and 1604 deletions

View File

@@ -24,4 +24,4 @@
} }
}, },
"@ship.zone/szci": {} "@ship.zone/szci": {}
} }

View File

@@ -1,5 +1,12 @@
# Changelog # Changelog
## 2026-04-14 - 5.3.3 - fix(build)
migrate project config to .smartconfig.json and refresh package dependencies
- replace npmextra.json with .smartconfig.json for build and release configuration
- update readme hints to reference the new smart config file
- bump build and runtime dependencies including tsrust, smartfs, smartlog, smartrust, tsclass, and mailparser
## 2026-04-14 - 5.3.2 - fix(mail) ## 2026-04-14 - 5.3.2 - fix(mail)
align queue, outbound hostname, and DKIM selector behavior across the mail server APIs align queue, outbound hostname, and DKIM selector behavior across the mail server APIs

View File

@@ -36,23 +36,23 @@
"check": "tsbuild check" "check": "tsbuild check"
}, },
"devDependencies": { "devDependencies": {
"@git.zone/tsbuild": "^4.1.2", "@git.zone/tsbuild": "4.1.2",
"@git.zone/tsrust": "^1.3.0", "@git.zone/tsrust": "^1.3.2",
"@git.zone/tstest": "^3.1.8", "@git.zone/tstest": "^3.6.3",
"@types/mailparser": "^3.4.6", "@types/mailparser": "^3.4.6",
"@types/node": "^25.2.3", "@types/node": "^25.6.0",
"tsx": "^4.21.0" "tsx": "^4.21.0"
}, },
"dependencies": { "dependencies": {
"@push.rocks/smartfile": "^13.1.2", "@push.rocks/smartfile": "^13.1.2",
"@push.rocks/smartfs": "^1.3.1", "@push.rocks/smartfs": "^1.5.0",
"@push.rocks/smartlog": "^3.1.8", "@push.rocks/smartlog": "^3.2.2",
"@push.rocks/smartmail": "^2.2.0", "@push.rocks/smartmail": "^2.2.0",
"@push.rocks/smartpath": "^6.0.0", "@push.rocks/smartpath": "^6.0.0",
"@push.rocks/smartrust": "^1.2.1", "@push.rocks/smartrust": "^1.3.2",
"@tsclass/tsclass": "^9.2.0", "@tsclass/tsclass": "^9.5.0",
"lru-cache": "^11.2.6", "lru-cache": "^10.4.3",
"mailparser": "^3.9.3", "mailparser": "^3.9.8",
"uuid": "^13.0.0" "uuid": "^13.0.0"
}, },
"files": [ "files": [

3354
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@@ -6,7 +6,7 @@
- `mailer-bin` is the binary target that `tsrust` builds for cross-compilation - `mailer-bin` is the binary target that `tsrust` builds for cross-compilation
- `mailer-napi` is a cdylib for N-API bindings (not built by tsrust, needs separate napi-rs build pipeline) - `mailer-napi` is a cdylib for N-API bindings (not built by tsrust, needs separate napi-rs build pipeline)
- tsrust only supports binary targets (looks for `src/main.rs` or `[[bin]]` entries) - tsrust only supports binary targets (looks for `src/main.rs` or `[[bin]]` entries)
- Cross-compilation targets: `linux_amd64`, `linux_arm64` (configured in `npmextra.json`) - Cross-compilation targets: `linux_amd64`, `linux_arm64` (configured in `.smartconfig.json`)
- Build output goes to `dist_rust/` - Build output goes to `dist_rust/`
## Build ## Build

View File

@@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@push.rocks/smartmta', name: '@push.rocks/smartmta',
version: '5.3.2', version: '5.3.3',
description: 'A high-performance, enterprise-grade Mail Transfer Agent (MTA) built from scratch in TypeScript with Rust acceleration.' description: 'A high-performance, enterprise-grade Mail Transfer Agent (MTA) built from scratch in TypeScript with Rust acceleration.'
} }