0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2024-12-23 21:53:55 -05:00

[ci] format

This commit is contained in:
bholmesdev 2023-03-24 12:01:10 +00:00 committed by fredkbot
parent cfcf2e2ffd
commit 8bd0ca08cd
3 changed files with 3 additions and 3 deletions

View file

@ -1,5 +1,5 @@
export { getConfiguredImageService, getImage } from './internal.js'; export { getConfiguredImageService, getImage } from './internal.js';
export { baseService } from './services/service.js'; export { baseService } from './services/service.js';
export { type LocalImageProps, type RemoteImageProps } from './types.js'; export { type LocalImageProps, type RemoteImageProps } from './types.js';
export { imageMetadata } from './utils/metadata.js';
export { emitESMImage } from './utils/emitAsset.js'; export { emitESMImage } from './utils/emitAsset.js';
export { imageMetadata } from './utils/metadata.js';

View file

@ -2,7 +2,7 @@ import fs from 'node:fs';
import path from 'node:path'; import path from 'node:path';
import { fileURLToPath, pathToFileURL } from 'node:url'; import { fileURLToPath, pathToFileURL } from 'node:url';
import slash from 'slash'; import slash from 'slash';
import type { AstroSettings, AstroConfig } from '../../@types/astro'; import type { AstroConfig, AstroSettings } from '../../@types/astro';
import { imageMetadata } from './metadata.js'; import { imageMetadata } from './metadata.js';
export async function emitESMImage( export async function emitESMImage(

View file

@ -6,8 +6,8 @@ import type {
import Markdoc from '@markdoc/markdoc'; import Markdoc from '@markdoc/markdoc';
import type { AstroConfig, AstroIntegration, ContentEntryType, HookParameters } from 'astro'; import type { AstroConfig, AstroIntegration, ContentEntryType, HookParameters } from 'astro';
import fs from 'node:fs'; import fs from 'node:fs';
import type * as rollup from 'rollup';
import { fileURLToPath } from 'node:url'; import { fileURLToPath } from 'node:url';
import type * as rollup from 'rollup';
import { import {
getAstroConfigPath, getAstroConfigPath,
isValidUrl, isValidUrl,