fix: add prefix and remove resolution esm flag (#1095)

* fix: add prefix and remove resolution esm flag

* refactor: revert
This commit is contained in:
Mauricio Siu
2025-01-12 15:10:25 -06:00
committed by GitHub
parent ae97595610
commit a965c0e924
7 changed files with 24 additions and 19 deletions

View File

@@ -2,11 +2,16 @@ import { serve } from "@hono/node-server";
import { Hono } from "hono";
import "dotenv/config";
import { zValidator } from "@hono/zod-validator";
import { logger } from "./logger";
import { cleanQueue, getJobRepeatable, removeJob, scheduleJob } from "./queue";
import { jobQueueSchema } from "./schema";
import { initializeJobs } from "./utils";
import { firstWorker, secondWorker } from "./workers";
import { logger } from "./logger.js";
import {
cleanQueue,
getJobRepeatable,
removeJob,
scheduleJob,
} from "./queue.js";
import { jobQueueSchema } from "./schema.js";
import { initializeJobs } from "./utils.js";
import { firstWorker, secondWorker } from "./workers.js";
const app = new Hono();