Skip to content

Commit ece5dfd

Browse files
committed
fix linting issues
1 parent b1da3b2 commit ece5dfd

File tree

3 files changed

+1
-8
lines changed

3 files changed

+1
-8
lines changed

packages/@apphosting/adapter-nextjs/e2e/run-local.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ const scenarios: Scenario[] = [
6868

6969
// skip creating the test config if data is not provided
7070
if (!scenario.config || !scenario.file) {
71-
return
71+
return;
7272
}
7373

7474
const configContent = scenario.config;

packages/@apphosting/adapter-nextjs/src/bin/build.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ import {
55
generateBuildOutput,
66
validateOutputDirectory,
77
getAdapterMetadata,
8-
exists,
98
} from "../utils.js";
109
import { join } from "path";
1110
import { getBuildOptions, runBuild } from "@apphosting/common";

packages/@apphosting/adapter-nextjs/src/overrides.spec.ts

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -340,18 +340,12 @@ describe("validateNextConfigOverride", () => {
340340
let root: string;
341341
let projectRoot: string;
342342
let originalConfigFileName: string;
343-
let newConfigFileName: string;
344-
let originalConfigPath: string;
345-
let newConfigPath: string;
346343

347344
beforeEach(() => {
348345
tmpDir = fs.mkdtempSync(path.join(os.tmpdir(), "test-next-config-override"));
349346
root = tmpDir;
350347
projectRoot = tmpDir;
351348
originalConfigFileName = "next.config.js";
352-
newConfigFileName = "next.config.original.js";
353-
originalConfigPath = path.join(root, originalConfigFileName);
354-
newConfigPath = path.join(root, newConfigFileName);
355349

356350
fs.mkdirSync(root, { recursive: true });
357351
});

0 commit comments

Comments
 (0)