From 45005a581d356e2cab4939031f036262ff1d9b5c Mon Sep 17 00:00:00 2001 From: Matt Kane Date: Thu, 19 Dec 2024 11:12:01 +0000 Subject: [PATCH] [ci] format --- packages/astro/src/core/session.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/packages/astro/src/core/session.ts b/packages/astro/src/core/session.ts index 590a5e194e..9ac7327c59 100644 --- a/packages/astro/src/core/session.ts +++ b/packages/astro/src/core/session.ts @@ -375,7 +375,11 @@ export class AstroSession { return this.#storage!; } // Use fs-lite rather than fs, because fs can't be bundled. Add a default base path if not provided. - if (this.#config.driver === 'fs' || this.#config.driver === 'fsLite' || this.#config.driver === 'fs-lite') { + if ( + this.#config.driver === 'fs' || + this.#config.driver === 'fsLite' || + this.#config.driver === 'fs-lite' + ) { this.#config.options ??= {}; this.#config.driver = 'fs-lite'; (this.#config.options as BuiltinDriverOptions['fs-lite']).base ??= '.astro/session';