From 5bee7ff39b16b5a0b032bb46351f4f010cb27c5d Mon Sep 17 00:00:00 2001 From: Florian Lefebvre Date: Mon, 12 Aug 2024 17:16:15 +0200 Subject: [PATCH] fix: do not use fs mock --- packages/astro/src/core/create-vite.ts | 2 +- packages/astro/src/env/vite-plugin-env.ts | 10 ++++------ 2 files changed, 5 insertions(+), 7 deletions(-) diff --git a/packages/astro/src/core/create-vite.ts b/packages/astro/src/core/create-vite.ts index 0570d9d5d5..dcf99c687c 100644 --- a/packages/astro/src/core/create-vite.ts +++ b/packages/astro/src/core/create-vite.ts @@ -133,7 +133,7 @@ export async function createVite( // the build to run very slow as the filewatcher is triggered often. mode !== 'build' && vitePluginAstroServer({ settings, logger, fs }), envVitePlugin({ settings }), - astroEnv({ settings, mode, fs, sync }), + astroEnv({ settings, mode, sync }), markdownVitePlugin({ settings, logger }), htmlVitePlugin(), mdxVitePlugin(), diff --git a/packages/astro/src/env/vite-plugin-env.ts b/packages/astro/src/env/vite-plugin-env.ts index 242f2caea3..ebff5c765d 100644 --- a/packages/astro/src/env/vite-plugin-env.ts +++ b/packages/astro/src/env/vite-plugin-env.ts @@ -1,4 +1,4 @@ -import type fsMod from 'node:fs'; +import { readFileSync } from 'node:fs'; import { fileURLToPath } from 'node:url'; import { type Plugin, loadEnv } from 'vite'; import type { AstroSettings } from '../@types/astro.js'; @@ -15,11 +15,10 @@ import { getEnvFieldType, validateEnvVariable } from './validators.js'; interface AstroEnvPluginParams { settings: AstroSettings; mode: 'dev' | 'build' | string; - fs: typeof fsMod; sync: boolean; } -export function astroEnv({ settings, mode, fs, sync }: AstroEnvPluginParams): Plugin | undefined { +export function astroEnv({ settings, mode, sync }: AstroEnvPluginParams): Plugin | undefined { if (sync) { return; } @@ -49,7 +48,7 @@ export function astroEnv({ settings, mode, fs, sync }: AstroEnvPluginParams): Pl }); templates = { - ...getTemplates(schema, fs, validatedVariables), + ...getTemplates(schema, validatedVariables), internal: `export const schema = ${JSON.stringify(schema)};`, }; }, @@ -126,11 +125,10 @@ function validatePublicVariables({ function getTemplates( schema: EnvSchema, - fs: typeof fsMod, validatedVariables: ReturnType, ) { let client = ''; - let server = fs.readFileSync(MODULE_TEMPLATE_URL, 'utf-8'); + let server = readFileSync(MODULE_TEMPLATE_URL, 'utf-8'); let onSetGetEnv = ''; for (const { key, value, context } of validatedVariables) {