Skip to content

Commit 40b090f

Browse files
committed
applied biome 1.6.0 import sorting
1 parent 02aacc8 commit 40b090f

14 files changed

+14
-14
lines changed

bin/openapi-glue-cli.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
#!/usr/bin/env node
22

33
import { basename, resolve } from "node:path";
4+
import { exit } from "node:process";
45
import { fileURLToPath } from "node:url";
56
import argvParser from "minimist";
6-
import { exit } from "node:process";
77
import { Generator } from "../lib/generator.js";
88
const __filename = fileURLToPath(import.meta.url);
99

lib/templates/standaloneJS/projectData.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { createRequire } from "node:module";
21
import { readFileSync } from "node:fs";
2+
import { createRequire } from "node:module";
33
import { join, relative } from "node:path";
44
import generateReadme from "./README.md.js";
55
import generatePlugin from "./index.js";

test/test-cli.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1+
import { strict as assert } from "node:assert/strict";
12
import { execSync } from "node:child_process";
23
import { createRequire } from "node:module";
3-
import { strict as assert } from "node:assert/strict";
44
import { test } from "node:test";
55
import { URL, fileURLToPath } from "node:url";
66
import { templateTypes } from "../lib/templates/templateTypes.js";

test/test-cookie-param.v3.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { createRequire } from "node:module";
21
import { strict as assert } from "node:assert/strict";
2+
import { createRequire } from "node:module";
33
import { test } from "node:test";
44
import Fastify from "fastify";
55
import fastifyOpenapiGlue from "../index.js";

test/test-custom-route-options.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { createRequire } from "node:module";
21
import { strict as assert } from "node:assert/strict";
2+
import { createRequire } from "node:module";
33
import { test } from "node:test";
44
import Fastify from "fastify";
55
import fastifyOpenapiGlue from "../index.js";

test/test-debuglogging.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { createRequire } from "node:module";
21
import { strict as assert } from "node:assert/strict";
2+
import { createRequire } from "node:module";
33
// just test the basics to aid debugging
44
import { test } from "node:test";
55
import Fastify from "fastify";

test/test-generate-project.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { createRequire } from "node:module";
21
import { strict as assert } from "node:assert/strict";
2+
import { createRequire } from "node:module";
33
import { test } from "node:test";
44
import { Generator } from "../lib/generator.js";
55
import { templateTypes } from "../lib/templates/templateTypes.js";

test/test-generator.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { createRequire } from "node:module";
21
import { strict as assert } from "node:assert/strict";
2+
import { createRequire } from "node:module";
33
import { test } from "node:test";
44
import { Generator } from "../lib/generator.js";
55
import { templateTypes } from "../lib/templates/templateTypes.js";

test/test-plugin.v2.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { createRequire } from "node:module";
21
import { strict as assert } from "node:assert/strict";
2+
import { createRequire } from "node:module";
33
import { test } from "node:test";
44
import Fastify from "fastify";
55
import fastifyOpenapiGlue from "../index.js";

test/test-plugin.v3.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { createRequire } from "node:module";
21
import { strict as assert } from "node:assert/strict";
2+
import { createRequire } from "node:module";
33
import { test } from "node:test";
44
import Fastify from "fastify";
55
import fastifyOpenapiGlue from "../index.js";

test/test-recursive.v3.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { createRequire } from "node:module";
21
import { strict as assert } from "node:assert/strict";
2+
import { createRequire } from "node:module";
33
import { test } from "node:test";
44
import Fastify from "fastify";
55
import fastifyOpenapiGlue from "../index.js";

test/test-securityHandlers.v2.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { createRequire } from "node:module";
21
import { strict as assert } from "node:assert/strict";
2+
import { createRequire } from "node:module";
33
import { test } from "node:test";
44
import Fastify from "fastify";
55
import fastifyOpenapiGlue from "../index.js";

test/test-securityHandlers.v3.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { createRequire } from "node:module";
21
import { strict as assert } from "node:assert/strict";
2+
import { createRequire } from "node:module";
33
import { test } from "node:test";
44
import Fastify from "fastify";
55
import fastifyOpenapiGlue from "../index.js";

test/test-warnings.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { createRequire } from "node:module";
21
import { strict as assert } from "node:assert/strict";
2+
import { createRequire } from "node:module";
33
import { test } from "node:test";
44
import Fastify from "fastify";
55
import fastifyOpenapiGlue from "../index.js";

0 commit comments

Comments
 (0)