Skip to content

Commit

Permalink
fix imports order
Browse files Browse the repository at this point in the history
  • Loading branch information
cometkim committed Jun 5, 2024
1 parent 9b1f807 commit 85a9714
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
* @typedef {import('./types').PluginOptions} PluginOptions;
*/

import { createRequire } from 'node:module';
import * as path from 'node:path';
import { fileURLToPath } from 'node:url';
import { createRequire } from 'node:module';

import Hangul from 'hangul-js';

Expand Down
2 changes: 1 addition & 1 deletion _workers/websites-integration/deployment-awaiter.mjs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { parseArgs } from 'node:util';
import { setInterval } from 'node:timers/promises';
import { parseArgs } from 'node:util';

import { $ } from 'zx';

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { type DeploymentParameters } from '#lib/objects/Deployment';
import { json } from '#lib/http';
import { type DeploymentParameters } from '#lib/objects/Deployment';

export const onRequestPost: PagesFunction<Env> = async (context) => {
const request = context.request as Request;
Expand Down

0 comments on commit 85a9714

Please sign in to comment.