Skip to content

Commit c5e24a2

Browse files
committed
Fixed import
1 parent 2587f54 commit c5e24a2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/build/src/extensions/core/vercelSyncEnvVars.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { BuildExtension } from "@trigger.dev/core/v3/build";
2-
import { syncEnvVars } from "./core.js";
2+
import { syncEnvVars } from "../core.js";
33

44
export function syncVercelEnvVars(
55
options?: { projectId?: string; vercelAccessToken?: string },
@@ -34,7 +34,7 @@ export function syncVercelEnvVars(
3434

3535
if (!vercelEnvironment) {
3636
throw new Error(
37-
`Invalid environment '${ctx.environment}'. Expected 'prod', 'staging', or 'dev'.`
37+
`Invalid environment '${ctx.environment}'. Expected 'prod', 'staging', or 'dev'.`,
3838
);
3939
}
4040
const vercelApiUrl =

0 commit comments

Comments
 (0)