diff options
author | 2022-11-16 13:36:29 +0000 | |
---|---|---|
committer | 2022-11-16 13:36:29 +0000 | |
commit | 6c0f966ef87a09fa17f7308d0b8d2a5693433d69 (patch) | |
tree | f2970d1cb23de08f97eab241195b391fe23a0371 | |
parent | a278c7ae6f2e93cabfe56fc16eb8b82b904ffb3a (diff) | |
download | astro-6c0f966ef87a09fa17f7308d0b8d2a5693433d69.tar.gz astro-6c0f966ef87a09fa17f7308d0b8d2a5693433d69.tar.zst astro-6c0f966ef87a09fa17f7308d0b8d2a5693433d69.zip |
[ci] format
-rw-r--r-- | packages/astro/src/core/config/settings.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/astro/src/core/config/settings.ts b/packages/astro/src/core/config/settings.ts index e598dfd6a..96cdcbe21 100644 --- a/packages/astro/src/core/config/settings.ts +++ b/packages/astro/src/core/config/settings.ts @@ -27,7 +27,7 @@ export function createSettings(config: AstroConfig, cwd?: string): AstroSettings const watchFiles = tsconfig?.exists ? [tsconfig.path, ...tsconfig.extendedPaths] : []; - if(cwd) { + if (cwd) { watchFiles.push(fileURLToPath(new URL('./package.json', pathToFileURL(cwd)))); } |