Skip to content

Commit

Permalink
manually correcting import ordering to unblock CI (withastro#3798)
Browse files Browse the repository at this point in the history
  • Loading branch information
Tony Sullivan authored Jul 1, 2022
1 parent 5953a6c commit b9d26f3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/integrations/image/src/endpoints/dev.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// @ts-ignore
import type { APIRoute } from 'astro';
import { lookup } from 'mrmime';
// @ts-ignore
import loader from 'virtual:image-loader';
import { loadImage } from '../utils.js';

Expand Down
2 changes: 1 addition & 1 deletion packages/integrations/image/src/endpoints/prod.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// @ts-ignore
import type { APIRoute } from 'astro';
import etag from 'etag';
import { lookup } from 'mrmime';
// @ts-ignore
import loader from 'virtual:image-loader';
import { isRemoteImage, loadRemoteImage } from '../utils.js';

Expand Down

0 comments on commit b9d26f3

Please sign in to comment.