[ci] format

This commit is contained in:
ematipico 2023-08-04 14:02:02 +00:00 committed by astrobot-houston
parent f844238c9b
commit 60616bb717
3 changed files with 3 additions and 3 deletions

View file

@ -5,8 +5,8 @@ import * as path from 'node:path';
import { fileURLToPath, pathToFileURL } from 'node:url';
import { normalizePath, type ViteDevServer } from 'vite';
import type { AstroSettings, ContentEntryType } from '../@types/astro.js';
import { AstroErrorData } from '../core/errors/index.js';
import { AstroError } from '../core/errors/errors.js';
import { AstroErrorData } from '../core/errors/index.js';
import { info, warn, type LogOptions } from '../core/logger/core.js';
import { isRelativePath } from '../core/path.js';
import { CONTENT_TYPES_FILE, VIRTUAL_MODULE_ID } from './consts.js';

View file

@ -12,8 +12,8 @@ import type {
DataEntryModule,
DataEntryType,
} from '../@types/astro.js';
import { AstroErrorData } from '../core/errors/index.js';
import { AstroError } from '../core/errors/errors.js';
import { AstroErrorData } from '../core/errors/index.js';
import { escapeViteEnvReferences } from '../vite-plugin-utils/index.js';
import { CONTENT_FLAG, DATA_FLAG } from './consts.js';
import {

View file

@ -1,7 +1,7 @@
import type { PluginObj } from '@babel/core';
import * as t from '@babel/types';
import { AstroErrorData } from '../core/errors/index.js';
import { AstroError } from '../core/errors/errors.js';
import { AstroErrorData } from '../core/errors/index.js';
import { resolvePath } from '../core/util.js';
import type { PluginMetadata } from '../vite-plugin-astro/types';