diff options
author | 2023-03-31 11:09:21 +0000 | |
---|---|---|
committer | 2023-03-31 11:09:21 +0000 | |
commit | b755bd62ff490cab3562c28ae4d8d88b791eea85 (patch) | |
tree | 46af0330996de8280e22c3f2c1c4a744b03e7467 | |
parent | 08e92f4f8ece50e377af5b0caca4ad789e0f23c1 (diff) | |
download | astro-b755bd62ff490cab3562c28ae4d8d88b791eea85.tar.gz astro-b755bd62ff490cab3562c28ae4d8d88b791eea85.tar.zst astro-b755bd62ff490cab3562c28ae4d8d88b791eea85.zip |
[ci] format
-rw-r--r-- | packages/astro/src/core/errors/dev/utils.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/astro/src/core/errors/dev/utils.ts b/packages/astro/src/core/errors/dev/utils.ts index 156847469..28445ba32 100644 --- a/packages/astro/src/core/errors/dev/utils.ts +++ b/packages/astro/src/core/errors/dev/utils.ts @@ -4,13 +4,13 @@ import * as fs from 'node:fs'; import { isAbsolute, join } from 'node:path'; import { fileURLToPath } from 'node:url'; import stripAnsi from 'strip-ansi'; -import { normalizePath } from 'vite'; import type { ESBuildTransformResult } from 'vite'; +import { normalizePath } from 'vite'; import type { SSRError } from '../../../@types/astro.js'; +import { removeLeadingForwardSlashWindows } from '../../path.js'; import { AggregateError, type ErrorWithMetadata } from '../errors.js'; import { codeFrame } from '../printer.js'; import { normalizeLF } from '../utils.js'; -import { removeLeadingForwardSlashWindows } from '../../path.js'; type EsbuildMessage = ESBuildTransformResult['warnings'][number]; |