diff options
author | 2023-02-13 22:21:23 +0000 | |
---|---|---|
committer | 2023-02-13 22:21:23 +0000 | |
commit | e00e934140d2d0afbe67e7cef90a10b66e010e3f (patch) | |
tree | 140fb56e66b4148333ae2ea3aca4dffac1abddd4 | |
parent | c397be324f97bb9700da8cd6d845470530b7d18c (diff) | |
download | astro-e00e934140d2d0afbe67e7cef90a10b66e010e3f.tar.gz astro-e00e934140d2d0afbe67e7cef90a10b66e010e3f.tar.zst astro-e00e934140d2d0afbe67e7cef90a10b66e010e3f.zip |
[ci] format
-rw-r--r-- | packages/astro/src/content/server-listeners.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/astro/src/content/server-listeners.ts b/packages/astro/src/content/server-listeners.ts index e204d893d..4631aa2bd 100644 --- a/packages/astro/src/content/server-listeners.ts +++ b/packages/astro/src/content/server-listeners.ts @@ -1,14 +1,14 @@ import { bold, cyan } from 'kleur/colors'; import type fsMod from 'node:fs'; +import path from 'node:path'; import { fileURLToPath, pathToFileURL } from 'node:url'; import type { ViteDevServer } from 'vite'; import type { AstroSettings } from '../@types/astro.js'; +import { loadTSConfig } from '../core/config/tsconfig.js'; import { info, LogOptions, warn } from '../core/logger/core.js'; import { appendForwardSlash } from '../core/path.js'; import { createContentTypesGenerator } from './types-generator.js'; import { ContentPaths, getContentPaths, globalContentConfigObserver } from './utils.js'; -import { loadTSConfig } from '../core/config/tsconfig.js'; -import path from 'node:path'; interface ContentServerListenerParams { fs: typeof fsMod; |