0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-01-27 22:19:04 -05:00

[ci] format

This commit is contained in:
Florian Lefebvre 2024-10-16 13:53:31 +00:00 committed by astrobot-houston
parent 8b1a641be9
commit 0bbf2fb526
2 changed files with 2 additions and 2 deletions

View file

@ -1,6 +1,6 @@
import { AstroError, AstroErrorData } from '../core/errors/index.js';
import { ENV_SYMBOL } from './runtime-constants.js';
import { invalidVariablesToError } from './errors.js';
import { ENV_SYMBOL } from './runtime-constants.js';
import type { ValidationResultInvalid } from './validators.js';
export { validateEnvVariable, getEnvFieldType } from './validators.js';

View file

@ -9,9 +9,9 @@ import {
VIRTUAL_MODULES_IDS_VALUES,
} from './constants.js';
import { type InvalidVariable, invalidVariablesToError } from './errors.js';
import { ENV_SYMBOL } from './runtime-constants.js';
import type { EnvSchema } from './schema.js';
import { getEnvFieldType, validateEnvVariable } from './validators.js';
import { ENV_SYMBOL } from './runtime-constants.js';
interface AstroEnvVirtualModPluginParams {
settings: AstroSettings;