sprint-es 0.0.134 → 0.0.136
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/dist/cjs/cli.cjs +32 -19
- package/dist/cjs/index.cjs +9 -7
- package/dist/esm/cli.js +32 -19
- package/dist/esm/index.js +9 -7
- package/dist/types/sprint.d.ts +1 -0
- package/dist/types/sprint.d.ts.map +1 -1
- package/package.json +1 -3
package/dist/cjs/cli.cjs
CHANGED
|
@@ -388,35 +388,37 @@ async function runDoctor() {
|
|
|
388
388
|
logger.break();
|
|
389
389
|
}
|
|
390
390
|
async function main() {
|
|
391
|
+
const hasDist = fs.existsSync(path.join(projectRoot, "dist"));
|
|
392
|
+
const hasTsConfig = fs.existsSync(path.join(projectRoot, "tsconfig.json"));
|
|
391
393
|
switch (command) {
|
|
392
394
|
case "dev": {
|
|
393
395
|
console.log("🚀 Starting development server with hot reload...");
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
396
|
+
let srcFile;
|
|
397
|
+
let devCmd;
|
|
398
|
+
if (hasTsConfig) {
|
|
399
|
+
srcFile = fs.existsSync(path.join(projectRoot, "src/app.ts")) ? "src/app.ts" : "src/index.ts";
|
|
400
|
+
devCmd = `tsx --watch ${srcFile}`;
|
|
401
|
+
} else {
|
|
402
|
+
srcFile = fs.existsSync(path.join(projectRoot, "src/app.js")) ? "src/app.js" : fs.existsSync(path.join(projectRoot, "src/app.mjs")) ? "src/app.mjs" : fs.existsSync(path.join(projectRoot, "src/index.js")) ? "src/index.js" : "src/index.mjs";
|
|
403
|
+
devCmd = `node --watch ${srcFile}`;
|
|
404
|
+
}
|
|
397
405
|
await runCommand(devCmd, { NODE_ENV: "development" });
|
|
398
406
|
break;
|
|
399
407
|
}
|
|
400
408
|
case "build": {
|
|
401
409
|
console.log("🚀 Building for production...");
|
|
402
|
-
const isTS = fs.existsSync(path.join(projectRoot, "sprint.config.ts"));
|
|
403
410
|
const distPath = path.join(projectRoot, "dist");
|
|
404
411
|
const tsconfigPath = path.join(projectRoot, "tsconfig.json");
|
|
412
|
+
const hasSprintConfigTs = fs.existsSync(path.join(projectRoot, "sprint.config.ts"));
|
|
405
413
|
console.log("[Sprint] Cleaning dist...");
|
|
406
414
|
fs.rmSync(distPath, { recursive: true, force: true });
|
|
407
415
|
console.log("[Sprint] dist cleaned ✓");
|
|
408
416
|
console.log("[Sprint] Compiling with tsup...");
|
|
409
|
-
await runCommand(
|
|
410
|
-
`tsc && tsup`,
|
|
411
|
-
{ NODE_ENV: "production" }
|
|
412
|
-
);
|
|
417
|
+
await runCommand(`tsc && tsup`, { NODE_ENV: "production" });
|
|
413
418
|
console.log("[Sprint] Compilation completed ✓");
|
|
414
|
-
if (
|
|
419
|
+
if (hasSprintConfigTs) {
|
|
415
420
|
console.log("[Sprint] Compiling sprint.config.ts...");
|
|
416
|
-
await runCommand(
|
|
417
|
-
`tsup sprint.config.ts --outDir "${distPath}" --format cjs --tsconfig "${tsconfigPath}" --clean false`,
|
|
418
|
-
{ NODE_ENV: "production" }
|
|
419
|
-
);
|
|
421
|
+
await runCommand(`tsup sprint.config.ts --outDir "${distPath}" --format cjs --tsconfig "${tsconfigPath}" --clean false`, { NODE_ENV: "production" });
|
|
420
422
|
console.log("[Sprint] sprint.config.js generated ✓");
|
|
421
423
|
}
|
|
422
424
|
console.log("✅ Build completed successfully!");
|
|
@@ -424,12 +426,23 @@ async function main() {
|
|
|
424
426
|
}
|
|
425
427
|
case "start": {
|
|
426
428
|
console.log("🚀 Starting production server...");
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
429
|
+
let entryFile = null;
|
|
430
|
+
if (hasDist) {
|
|
431
|
+
const candidates = ["dist/app.mjs", "dist/app.js", "dist/index.mjs", "dist/index.js"];
|
|
432
|
+
entryFile = candidates.find((f) => fs.existsSync(path.join(projectRoot, f))) ?? null;
|
|
433
|
+
if (!entryFile) {
|
|
434
|
+
console.error("[Sprint] Entry file not found in dist/.");
|
|
435
|
+
console.error("[Sprint] Expected dist/app.mjs or dist/index.mjs");
|
|
436
|
+
process.exit(1);
|
|
437
|
+
}
|
|
438
|
+
} else {
|
|
439
|
+
const candidates = ["src/app.js", "src/app.mjs", "src/index.js", "src/index.mjs"];
|
|
440
|
+
entryFile = candidates.find((f) => fs.existsSync(path.join(projectRoot, f))) ?? null;
|
|
441
|
+
if (!entryFile) {
|
|
442
|
+
console.error("[Sprint] Entry file not found in src/.");
|
|
443
|
+
console.error("[Sprint] Expected src/app.js or src/index.js");
|
|
444
|
+
process.exit(1);
|
|
445
|
+
}
|
|
433
446
|
}
|
|
434
447
|
await runCommand(`node "${path.join(projectRoot, entryFile)}"`, { NODE_ENV: "production" });
|
|
435
448
|
break;
|
package/dist/cjs/index.cjs
CHANGED
|
@@ -127,6 +127,7 @@ class Sprint {
|
|
|
127
127
|
this.urlEncodedLimit = "50mb";
|
|
128
128
|
this.prefix = "";
|
|
129
129
|
this.loadedMiddlewares = [];
|
|
130
|
+
this.counters = { routes: 0, middlewares: 0, cronjobs: 0 };
|
|
130
131
|
this.openapi = {
|
|
131
132
|
generateOnBuild: false,
|
|
132
133
|
path: "/openapi.json",
|
|
@@ -265,6 +266,7 @@ class Sprint {
|
|
|
265
266
|
console.warn("[Sprint] Failed to load graphql-http or ruru:", err);
|
|
266
267
|
}
|
|
267
268
|
}
|
|
269
|
+
this.loadNotFound();
|
|
268
270
|
if (finalConfig.autoListen) this.listen();
|
|
269
271
|
});
|
|
270
272
|
});
|
|
@@ -393,6 +395,7 @@ class Sprint {
|
|
|
393
395
|
name,
|
|
394
396
|
filePath
|
|
395
397
|
});
|
|
398
|
+
this.counters.middlewares++;
|
|
396
399
|
if (isVerbose) console.log(`[Sprint] Loaded middleware: ${name} (priority: ${config.priority ?? 100})`);
|
|
397
400
|
}
|
|
398
401
|
} catch (err) {
|
|
@@ -464,6 +467,7 @@ class Sprint {
|
|
|
464
467
|
this.app.use(finalRoute, router);
|
|
465
468
|
if (isVerbose) console.log(`[Sprint] Loaded route: ${finalRoute} -> ${filePath}`);
|
|
466
469
|
}
|
|
470
|
+
this.counters.routes += router.stack.length;
|
|
467
471
|
}
|
|
468
472
|
} catch (err) {
|
|
469
473
|
console.warn(`[Sprint] Failed to load route ${filePath}:`, err);
|
|
@@ -484,6 +488,7 @@ class Sprint {
|
|
|
484
488
|
const moduleUrl = url.pathToFileURL(filePath).href;
|
|
485
489
|
await import(moduleUrl);
|
|
486
490
|
if (isVerbose) console.log(`[Sprint] Loaded cronjob: ${file.replace(/\.(ts|js)$/, "")}`);
|
|
491
|
+
this.counters.cronjobs++;
|
|
487
492
|
} catch (err) {
|
|
488
493
|
console.warn(`[Sprint] Failed to load cronjob ${filePath}:`, err);
|
|
489
494
|
}
|
|
@@ -791,9 +796,9 @@ class Sprint {
|
|
|
791
796
|
console.log(` ${dim}Prefix:${reset} ${bold}${prefixInfo}${reset}`);
|
|
792
797
|
console.log(` ${dim}Healthcheck:${reset} http://localhost:${port}/healthcheck ${dim}(also available at /health)${reset}`);
|
|
793
798
|
console.log("");
|
|
794
|
-
console.log(` ${dim}Loaded routes:${reset} ${bold}${this.
|
|
795
|
-
console.log(` ${dim}Loaded middlewares:${reset} ${bold}${this.
|
|
796
|
-
console.log(` ${dim}
|
|
799
|
+
console.log(` ${dim}Loaded routes:${reset} ${bold}${this.counters.routes}${reset}`);
|
|
800
|
+
console.log(` ${dim}Loaded middlewares:${reset} ${bold}${this.counters.middlewares}${reset}`);
|
|
801
|
+
console.log(` ${dim}Loaded cronjobs:${reset} ${bold}${this.counters.cronjobs}${reset}`);
|
|
797
802
|
if (this.openapi.generateOnBuild || this.openapi.swaggerUi.enabled) console.log("");
|
|
798
803
|
if (this.openapi.generateOnBuild) console.log(` ${dim}OpenAPI Spec:${reset} http://localhost:${port}${this.openapi.path}`);
|
|
799
804
|
if (this.openapi.swaggerUi.enabled) console.log(` ${dim}Swagger UI:${reset} http://localhost:${port}${this.openapi.swaggerUi.path}`);
|
|
@@ -822,10 +827,7 @@ class Sprint {
|
|
|
822
827
|
});
|
|
823
828
|
};
|
|
824
829
|
tryListen(basePort);
|
|
825
|
-
|
|
826
|
-
this.loadNotFound();
|
|
827
|
-
if (callback) callback();
|
|
828
|
-
});
|
|
830
|
+
if (callback) callback();
|
|
829
831
|
}
|
|
830
832
|
}
|
|
831
833
|
function createSchemaValidationMiddleware(schema) {
|
package/dist/esm/cli.js
CHANGED
|
@@ -369,35 +369,37 @@ async function runDoctor() {
|
|
|
369
369
|
logger.break();
|
|
370
370
|
}
|
|
371
371
|
async function main() {
|
|
372
|
+
const hasDist = existsSync(join(projectRoot, "dist"));
|
|
373
|
+
const hasTsConfig = existsSync(join(projectRoot, "tsconfig.json"));
|
|
372
374
|
switch (command) {
|
|
373
375
|
case "dev": {
|
|
374
376
|
console.log("🚀 Starting development server with hot reload...");
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
377
|
+
let srcFile;
|
|
378
|
+
let devCmd;
|
|
379
|
+
if (hasTsConfig) {
|
|
380
|
+
srcFile = existsSync(join(projectRoot, "src/app.ts")) ? "src/app.ts" : "src/index.ts";
|
|
381
|
+
devCmd = `tsx --watch ${srcFile}`;
|
|
382
|
+
} else {
|
|
383
|
+
srcFile = existsSync(join(projectRoot, "src/app.js")) ? "src/app.js" : existsSync(join(projectRoot, "src/app.mjs")) ? "src/app.mjs" : existsSync(join(projectRoot, "src/index.js")) ? "src/index.js" : "src/index.mjs";
|
|
384
|
+
devCmd = `node --watch ${srcFile}`;
|
|
385
|
+
}
|
|
378
386
|
await runCommand(devCmd, { NODE_ENV: "development" });
|
|
379
387
|
break;
|
|
380
388
|
}
|
|
381
389
|
case "build": {
|
|
382
390
|
console.log("🚀 Building for production...");
|
|
383
|
-
const isTS = existsSync(join(projectRoot, "sprint.config.ts"));
|
|
384
391
|
const distPath = join(projectRoot, "dist");
|
|
385
392
|
const tsconfigPath = join(projectRoot, "tsconfig.json");
|
|
393
|
+
const hasSprintConfigTs = existsSync(join(projectRoot, "sprint.config.ts"));
|
|
386
394
|
console.log("[Sprint] Cleaning dist...");
|
|
387
395
|
rmSync(distPath, { recursive: true, force: true });
|
|
388
396
|
console.log("[Sprint] dist cleaned ✓");
|
|
389
397
|
console.log("[Sprint] Compiling with tsup...");
|
|
390
|
-
await runCommand(
|
|
391
|
-
`tsc && tsup`,
|
|
392
|
-
{ NODE_ENV: "production" }
|
|
393
|
-
);
|
|
398
|
+
await runCommand(`tsc && tsup`, { NODE_ENV: "production" });
|
|
394
399
|
console.log("[Sprint] Compilation completed ✓");
|
|
395
|
-
if (
|
|
400
|
+
if (hasSprintConfigTs) {
|
|
396
401
|
console.log("[Sprint] Compiling sprint.config.ts...");
|
|
397
|
-
await runCommand(
|
|
398
|
-
`tsup sprint.config.ts --outDir "${distPath}" --format cjs --tsconfig "${tsconfigPath}" --clean false`,
|
|
399
|
-
{ NODE_ENV: "production" }
|
|
400
|
-
);
|
|
402
|
+
await runCommand(`tsup sprint.config.ts --outDir "${distPath}" --format cjs --tsconfig "${tsconfigPath}" --clean false`, { NODE_ENV: "production" });
|
|
401
403
|
console.log("[Sprint] sprint.config.js generated ✓");
|
|
402
404
|
}
|
|
403
405
|
console.log("✅ Build completed successfully!");
|
|
@@ -405,12 +407,23 @@ async function main() {
|
|
|
405
407
|
}
|
|
406
408
|
case "start": {
|
|
407
409
|
console.log("🚀 Starting production server...");
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
410
|
+
let entryFile = null;
|
|
411
|
+
if (hasDist) {
|
|
412
|
+
const candidates = ["dist/app.mjs", "dist/app.js", "dist/index.mjs", "dist/index.js"];
|
|
413
|
+
entryFile = candidates.find((f) => existsSync(join(projectRoot, f))) ?? null;
|
|
414
|
+
if (!entryFile) {
|
|
415
|
+
console.error("[Sprint] Entry file not found in dist/.");
|
|
416
|
+
console.error("[Sprint] Expected dist/app.mjs or dist/index.mjs");
|
|
417
|
+
process.exit(1);
|
|
418
|
+
}
|
|
419
|
+
} else {
|
|
420
|
+
const candidates = ["src/app.js", "src/app.mjs", "src/index.js", "src/index.mjs"];
|
|
421
|
+
entryFile = candidates.find((f) => existsSync(join(projectRoot, f))) ?? null;
|
|
422
|
+
if (!entryFile) {
|
|
423
|
+
console.error("[Sprint] Entry file not found in src/.");
|
|
424
|
+
console.error("[Sprint] Expected src/app.js or src/index.js");
|
|
425
|
+
process.exit(1);
|
|
426
|
+
}
|
|
414
427
|
}
|
|
415
428
|
await runCommand(`node "${join(projectRoot, entryFile)}"`, { NODE_ENV: "production" });
|
|
416
429
|
break;
|
package/dist/esm/index.js
CHANGED
|
@@ -102,6 +102,7 @@ class Sprint {
|
|
|
102
102
|
this.urlEncodedLimit = "50mb";
|
|
103
103
|
this.prefix = "";
|
|
104
104
|
this.loadedMiddlewares = [];
|
|
105
|
+
this.counters = { routes: 0, middlewares: 0, cronjobs: 0 };
|
|
105
106
|
this.openapi = {
|
|
106
107
|
generateOnBuild: false,
|
|
107
108
|
path: "/openapi.json",
|
|
@@ -240,6 +241,7 @@ class Sprint {
|
|
|
240
241
|
console.warn("[Sprint] Failed to load graphql-http or ruru:", err);
|
|
241
242
|
}
|
|
242
243
|
}
|
|
244
|
+
this.loadNotFound();
|
|
243
245
|
if (finalConfig.autoListen) this.listen();
|
|
244
246
|
});
|
|
245
247
|
});
|
|
@@ -368,6 +370,7 @@ class Sprint {
|
|
|
368
370
|
name,
|
|
369
371
|
filePath
|
|
370
372
|
});
|
|
373
|
+
this.counters.middlewares++;
|
|
371
374
|
if (isVerbose) console.log(`[Sprint] Loaded middleware: ${name} (priority: ${config.priority ?? 100})`);
|
|
372
375
|
}
|
|
373
376
|
} catch (err) {
|
|
@@ -439,6 +442,7 @@ class Sprint {
|
|
|
439
442
|
this.app.use(finalRoute, router);
|
|
440
443
|
if (isVerbose) console.log(`[Sprint] Loaded route: ${finalRoute} -> ${filePath}`);
|
|
441
444
|
}
|
|
445
|
+
this.counters.routes += router.stack.length;
|
|
442
446
|
}
|
|
443
447
|
} catch (err) {
|
|
444
448
|
console.warn(`[Sprint] Failed to load route ${filePath}:`, err);
|
|
@@ -459,6 +463,7 @@ class Sprint {
|
|
|
459
463
|
const moduleUrl = pathToFileURL(filePath).href;
|
|
460
464
|
await import(moduleUrl);
|
|
461
465
|
if (isVerbose) console.log(`[Sprint] Loaded cronjob: ${file.replace(/\.(ts|js)$/, "")}`);
|
|
466
|
+
this.counters.cronjobs++;
|
|
462
467
|
} catch (err) {
|
|
463
468
|
console.warn(`[Sprint] Failed to load cronjob ${filePath}:`, err);
|
|
464
469
|
}
|
|
@@ -766,9 +771,9 @@ class Sprint {
|
|
|
766
771
|
console.log(` ${dim}Prefix:${reset} ${bold}${prefixInfo}${reset}`);
|
|
767
772
|
console.log(` ${dim}Healthcheck:${reset} http://localhost:${port}/healthcheck ${dim}(also available at /health)${reset}`);
|
|
768
773
|
console.log("");
|
|
769
|
-
console.log(` ${dim}Loaded routes:${reset} ${bold}${this.
|
|
770
|
-
console.log(` ${dim}Loaded middlewares:${reset} ${bold}${this.
|
|
771
|
-
console.log(` ${dim}
|
|
774
|
+
console.log(` ${dim}Loaded routes:${reset} ${bold}${this.counters.routes}${reset}`);
|
|
775
|
+
console.log(` ${dim}Loaded middlewares:${reset} ${bold}${this.counters.middlewares}${reset}`);
|
|
776
|
+
console.log(` ${dim}Loaded cronjobs:${reset} ${bold}${this.counters.cronjobs}${reset}`);
|
|
772
777
|
if (this.openapi.generateOnBuild || this.openapi.swaggerUi.enabled) console.log("");
|
|
773
778
|
if (this.openapi.generateOnBuild) console.log(` ${dim}OpenAPI Spec:${reset} http://localhost:${port}${this.openapi.path}`);
|
|
774
779
|
if (this.openapi.swaggerUi.enabled) console.log(` ${dim}Swagger UI:${reset} http://localhost:${port}${this.openapi.swaggerUi.path}`);
|
|
@@ -797,10 +802,7 @@ class Sprint {
|
|
|
797
802
|
});
|
|
798
803
|
};
|
|
799
804
|
tryListen(basePort);
|
|
800
|
-
|
|
801
|
-
this.loadNotFound();
|
|
802
|
-
if (callback) callback();
|
|
803
|
-
});
|
|
805
|
+
if (callback) callback();
|
|
804
806
|
}
|
|
805
807
|
}
|
|
806
808
|
function createSchemaValidationMiddleware(schema) {
|
package/dist/types/sprint.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"sprint.d.ts","sourceRoot":"","sources":["../../src/sprint.ts"],"names":[],"mappings":"AASA,OAAO,EAAE,OAAO,EAA+B,gBAAgB,EAAoB,MAAM,SAAS,CAAC;AACnG,OAAO,OAAO,EAAE,EAAE,WAAW,EAAoD,MAAM,SAAS,CAAC;AAejG,eAAO,MAAM,aAAa,SAAQ,CAAC;AACnC,eAAO,MAAM,YAAY,SAAS,CAAC;AA8CnC,qBAAa,MAAM;IACR,GAAG,EAAE,WAAW,CAAC;IACxB,OAAO,CAAC,IAAI,CAAwD;IACpE,OAAO,CAAC,UAAU,CAAsB;IACxC,OAAO,CAAC,eAAe,CAA2B;IAClD,OAAO,CAAC,YAAY,CAAwB;IAC5C,OAAO,CAAC,SAAS,CAAkB;IACnC,OAAO,CAAC,eAAe,CAAkB;IACzC,OAAO,CAAC,MAAM,CAAc;IAC5B,OAAO,CAAC,YAAY,CAAiB;IACrC,OAAO,CAAC,MAAM,CAAe;IAC7B,OAAO,CAAC,iBAAiB,CAA0B;IACnD,OAAO,CAAC,OAAO,CAcT;IACN,OAAO,CAAC,OAAO,CAcT;IACN,OAAO,CAAC,aAAa,CAAa;IAClC,OAAO,CAAC,gBAAgB,CAIhB;;
|
|
1
|
+
{"version":3,"file":"sprint.d.ts","sourceRoot":"","sources":["../../src/sprint.ts"],"names":[],"mappings":"AASA,OAAO,EAAE,OAAO,EAA+B,gBAAgB,EAAoB,MAAM,SAAS,CAAC;AACnG,OAAO,OAAO,EAAE,EAAE,WAAW,EAAoD,MAAM,SAAS,CAAC;AAejG,eAAO,MAAM,aAAa,SAAQ,CAAC;AACnC,eAAO,MAAM,YAAY,SAAS,CAAC;AA8CnC,qBAAa,MAAM;IACR,GAAG,EAAE,WAAW,CAAC;IACxB,OAAO,CAAC,IAAI,CAAwD;IACpE,OAAO,CAAC,UAAU,CAAsB;IACxC,OAAO,CAAC,eAAe,CAA2B;IAClD,OAAO,CAAC,YAAY,CAAwB;IAC5C,OAAO,CAAC,SAAS,CAAkB;IACnC,OAAO,CAAC,eAAe,CAAkB;IACzC,OAAO,CAAC,MAAM,CAAc;IAC5B,OAAO,CAAC,YAAY,CAAiB;IACrC,OAAO,CAAC,MAAM,CAAe;IAC7B,OAAO,CAAC,iBAAiB,CAA0B;IACnD,OAAO,CAAC,QAAQ,CAA8C;IAC9D,OAAO,CAAC,OAAO,CAcT;IACN,OAAO,CAAC,OAAO,CAcT;IACN,OAAO,CAAC,aAAa,CAAa;IAClC,OAAO,CAAC,gBAAgB,CAIhB;;YAuJM,IAAI;IAiDlB,OAAO,CAAC,YAAY;IAiDpB;;OAEG;IACH,OAAO,CAAC,sBAAsB;IA4B9B;;OAEG;YACW,eAAe;IAkC7B,OAAO,CAAC,eAAe;YAiBT,UAAU;YAmFV,YAAY;IAqB1B,OAAO,CAAC,YAAY;IAgCpB,+BAA+B;IAC/B,OAAO,CAAC,WAAW;IAKnB,OAAO,CAAC,mBAAmB;IA+K3B,OAAO,CAAC,kBAAkB;IAqC1B,OAAO,CAAC,kBAAkB;IA8B1B,OAAO,CAAC,mBAAmB;IA+BpB,GAAG,CAAC,IAAI,EAAE,MAAM,EAAE,OAAO,EAAE,OAAO;IAClC,IAAI,CAAC,IAAI,EAAE,MAAM,EAAE,OAAO,EAAE,OAAO;IACnC,GAAG,CAAC,IAAI,EAAE,MAAM,EAAE,OAAO,EAAE,OAAO;IAClC,MAAM,CAAC,IAAI,EAAE,MAAM,EAAE,OAAO,EAAE,OAAO;IACrC,KAAK,CAAC,IAAI,EAAE,MAAM,EAAE,OAAO,EAAE,OAAO;IACpC,GAAG,CAAC,aAAa,EAAE,MAAM,GAAG,OAAO,GAAG,gBAAgB,EAAE,YAAY,CAAC,EAAE,OAAO;IAY9E,gBAAgB,CAAC,MAAM,EAAE,GAAG,GAAG,IAAI;IAInC,MAAM,CAAC,QAAQ,CAAC,EAAE,MAAM,IAAI,GAAG,IAAI;CA+D7C"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sprint-es",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.136",
|
|
4
4
|
"description": "Sprint - Quickly API",
|
|
5
5
|
"main": "dist/cjs/index.js",
|
|
6
6
|
"module": "dist/esm/index.js",
|
|
@@ -107,14 +107,12 @@
|
|
|
107
107
|
"axios": "^1.13.2",
|
|
108
108
|
"cors": "^2.8.5",
|
|
109
109
|
"dotenv": "^17.3.1",
|
|
110
|
-
"esbuild": "^0.27.3",
|
|
111
110
|
"express": "^5.1.0",
|
|
112
111
|
"morgan": "^1.10.1",
|
|
113
112
|
"node-cron": "^3.0.3",
|
|
114
113
|
"path": "^0.12.7",
|
|
115
114
|
"serve-favicon": "^2.5.1",
|
|
116
115
|
"toolkitify": "^0.0.26",
|
|
117
|
-
"tsc-esm-fix": "^3.1.2",
|
|
118
116
|
"tsx": "^4.19.0",
|
|
119
117
|
"zod": "^3.25.0"
|
|
120
118
|
},
|