fix: update import statements to include file extensions for consistency

This commit is contained in:
Mauricio Siu
2026-03-03 15:35:37 -06:00
parent 6f21f1cc1f
commit 20f79ac655
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
import { logger } from "./logger";
import { logger } from "./logger.js";
const baseUrl = process.env.INNGEST_BASE_URL ?? "";
const signingKey = process.env.INNGEST_SIGNING_KEY ?? "";
+1 -1
View File
@@ -9,7 +9,7 @@ import {
updateCompose,
updatePreviewDeployment,
} from "@dokploy/server";
import type { DeployJob } from "./schema";
import type { DeployJob } from "./schema.js";
export const deploy = async (job: DeployJob) => {
try {