Skip to content

Commit af9ac73

Browse files
committed
fix linting
1 parent bf0628e commit af9ac73

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

packages/open-next/src/adapters/cache.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ import type {
33
IncrementalCacheContext,
44
IncrementalCacheValue,
55
} from "types/cache";
6+
import { getTagFromValue, hasBeenRevalidated } from "utils/cache";
67
import { isBinaryContentType } from "../utils/binary";
78
import { debug, error, warn } from "./logger";
8-
import { getTagFromValue, hasBeenRevalidated } from "utils/cache";
99

1010
function isFetchCache(
1111
options?:

packages/open-next/src/core/routing/cacheInterceptor.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ import type { InternalEvent, InternalResult } from "types/open-next";
55
import type { CacheValue } from "types/overrides";
66
import { emptyReadableStream, toReadableStream } from "utils/stream";
77

8+
import { getTagFromValue, hasBeenRevalidated } from "utils/cache";
89
import { debug } from "../../adapters/logger";
910
import { localizePath } from "./i18n";
1011
import { generateMessageGroupId } from "./util";
11-
import { getTagFromValue, hasBeenRevalidated } from "utils/cache";
1212

1313
const CACHE_ONE_YEAR = 60 * 60 * 24 * 365;
1414
const CACHE_ONE_MONTH = 60 * 60 * 24 * 30;

packages/open-next/src/overrides/tagCache/ddb-nextMode.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ import { AwsClient } from "aws4fetch";
44
import { RecoverableError } from "utils/error";
55
import { customFetchClient } from "utils/fetch";
66

7+
import path from "node:path";
78
import { debug, error } from "../../adapters/logger";
89
import { chunk, parseNumberFromEnv } from "../../adapters/util";
910
import {
1011
MAX_DYNAMO_BATCH_WRITE_ITEM_COUNT,
1112
getDynamoBatchWriteCommandConcurrency,
1213
} from "./constants";
13-
import path from "node:path";
1414

1515
let awsClient: AwsClient | null = null;
1616

0 commit comments

Comments
 (0)