From ca7b2f84652ad0a21f6d4dff5514be738538a398 Mon Sep 17 00:00:00 2001 From: Nikola Hristov Date: Sat, 14 Oct 2023 11:52:11 +0300 Subject: [PATCH] squash! --- Configuration/ESBuild.js | 2 +- Configuration/ESBuild.ts | 2 +- README.md | 4 ++-- Source/Notation/{Biome.json => Biome2.json} | 0 Source/Variable/Biome.ts | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) rename Source/Notation/{Biome.json => Biome2.json} (100%) diff --git a/Configuration/ESBuild.js b/Configuration/ESBuild.js index e3c5c76..6202eb7 100644 --- a/Configuration/ESBuild.js +++ b/Configuration/ESBuild.js @@ -30,7 +30,7 @@ export default { resolveFrom: "out", assets: [ { - from: "./Source/Notation/Biome.json", + from: "./Source/Notation/biome.json", to: "./Notation/", }, ], diff --git a/Configuration/ESBuild.ts b/Configuration/ESBuild.ts index cd5d620..bc65535 100644 --- a/Configuration/ESBuild.ts +++ b/Configuration/ESBuild.ts @@ -32,7 +32,7 @@ export default { resolveFrom: "out", assets: [ { - from: "./Source/Notation/Biome.json", + from: "./Source/Notation/biome.json", to: "./Notation/", }, ], diff --git a/README.md b/README.md index 8cff30a..6259beb 100644 --- a/README.md +++ b/README.md @@ -90,13 +90,13 @@ export default { > **Note** > -> If you provide a `Biome.json` config file the utility will pick it up +> If you provide a `biome.json` config file the utility will pick it up > automatically. > **Warning** > > The configuration options from the `astro.config.ts` file will override the -> `Biome.json` config. +> `biome.json` config. #### You can add multiple paths to validate / format by specifying an array as the `Path` variable. diff --git a/Source/Notation/Biome.json b/Source/Notation/Biome2.json similarity index 100% rename from Source/Notation/Biome.json rename to Source/Notation/Biome2.json diff --git a/Source/Variable/Biome.ts b/Source/Variable/Biome.ts index f9f1a6f..50dd866 100644 --- a/Source/Variable/Biome.ts +++ b/Source/Variable/Biome.ts @@ -3,7 +3,7 @@ * */ export default JSON.parse( - await (await import("../Function/Config.js")).default("Biome.json") + await (await import("../Function/Config.js")).default("biome.json") ) satisfies Type; import type Type from "../Interface/Biome.js";