@zintrust/core 0.1.35 → 0.1.36
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/boot/bootstrap.js +2 -2
- package/src/index.js +3 -3
package/package.json
CHANGED
package/src/boot/bootstrap.js
CHANGED
|
@@ -105,7 +105,7 @@ const gracefulShutdown = async (signal) => {
|
|
|
105
105
|
try {
|
|
106
106
|
const { createRequire } = await import('../node-singletons/module.js');
|
|
107
107
|
const require = createRequire(import.meta.url);
|
|
108
|
-
const workers = require('
|
|
108
|
+
const workers = require('@zintrust/workers');
|
|
109
109
|
const workerBudgetMs = Math.min(15000, remainingMs());
|
|
110
110
|
await withTimeout(workers.WorkerShutdown.shutdown({
|
|
111
111
|
signal,
|
|
@@ -144,7 +144,7 @@ async function useWorkerStarter() {
|
|
|
144
144
|
try {
|
|
145
145
|
const { createRequire } = await import('../node-singletons/module.js');
|
|
146
146
|
const require = createRequire(import.meta.url);
|
|
147
|
-
const workers = require('
|
|
147
|
+
const workers = require('@zintrust/workers');
|
|
148
148
|
workerInit = workers.WorkerInit;
|
|
149
149
|
await workers.WorkerInit.initialize({
|
|
150
150
|
enableResourceMonitoring: true,
|
package/src/index.js
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @zintrust/core v0.1.
|
|
2
|
+
* @zintrust/core v0.1.36
|
|
3
3
|
*
|
|
4
4
|
* ZinTrust Framework - Production-Grade TypeScript Backend
|
|
5
5
|
* Built for performance, type safety, and exceptional developer experience
|
|
6
6
|
*
|
|
7
7
|
* Build Information:
|
|
8
|
-
* Built: 2026-01-29T10:
|
|
8
|
+
* Built: 2026-01-29T10:45:55.711Z
|
|
9
9
|
* Node: >=20.0.0
|
|
10
10
|
* License: MIT
|
|
11
11
|
*
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
* Available at runtime for debugging and health checks
|
|
22
22
|
*/
|
|
23
23
|
export const ZINTRUST_VERSION = '0.1.23';
|
|
24
|
-
export const ZINTRUST_BUILD_DATE = '2026-01-29T10:
|
|
24
|
+
export const ZINTRUST_BUILD_DATE = '2026-01-29T10:45:55.674Z'; // Replaced during build
|
|
25
25
|
import { Application } from './boot/Application.js';
|
|
26
26
|
import { AwsSigV4 } from './common/index.js';
|
|
27
27
|
import { SignedRequest } from './security/SignedRequest.js';
|