Skip to content

Commit 3456af3

Browse files
committed
moved cache type
1 parent e47007a commit 3456af3

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed

packages/open-next/src/overrides/incrementalCache/s3-lite.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
/* eslint-disable @typescript-eslint/no-non-null-assertion */
22
import { AwsClient } from "aws4fetch";
33
import path from "path";
4+
import { Extension } from "types/cache";
45
import { IgnorableError, RecoverableError } from "utils/error";
56
import { customFetchClient } from "utils/fetch";
67

78
import { parseNumberFromEnv } from "../../adapters/util";
8-
import { Extension } from "../../cache/next-types";
99
import { IncrementalCache } from "./types";
1010

1111
let awsClient: AwsClient | null = null;

packages/open-next/src/overrides/incrementalCache/s3.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ import {
66
S3ClientConfig,
77
} from "@aws-sdk/client-s3";
88
import path from "path";
9+
import { Extension } from "types/cache";
910

1011
import { awsLogger } from "../../adapters/logger";
1112
import { parseNumberFromEnv } from "../../adapters/util";
12-
import { Extension } from "../../cache/next-types";
1313
import { IncrementalCache } from "./types";
1414

1515
const {

packages/open-next/src/overrides/incrementalCache/types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Meta } from "../../cache/next-types";
1+
import { Meta } from "types/cache";
22

33
export type S3CachedFile =
44
| {
File renamed without changes.

0 commit comments

Comments
 (0)