From f16f8b929f6feffe3ec60379b7e0ac2ba7a8bb44 Mon Sep 17 00:00:00 2001 From: "Nikola R. Hristov" Date: Mon, 11 Mar 2024 12:37:13 +0200 Subject: [PATCH] 0.0.8 --- CHANGELOG.md | 4 ++++ .../Function/Configuration.configuration.html | 2 +- Documentation/Function/Configuration.readFile.html | 8 ++++---- Documentation/Function/Configuration.resolve.html | 4 ++-- Documentation/Function/Integration.Merge.html | 4 ++-- .../Function/Integration.integration.html | 2 +- Documentation/Interface/Configuration.Type.html | 2 +- Documentation/Interface/Integration.Type.html | 2 +- Documentation/Interface/Option.Type.html | 6 +++--- Documentation/Module/Biome.html | 4 ++-- Documentation/Module/Configuration.html | 4 ++-- Documentation/Module/Integration.html | 4 ++-- Documentation/Module/Option.html | 4 ++-- Documentation/Type/Biome.Type.html | 2 +- Documentation/Variable/Biome.biome.html | 2 +- Documentation/Variable/Integration.Default.html | 2 +- Documentation/Variable/Option.option.html | 2 +- Documentation/assets/style.css | 3 ++- Documentation/index.html | 4 ++-- README.md | 2 +- Target/Notation/Biome.json | 8 ++------ package.json | 14 +++++++------- 22 files changed, 45 insertions(+), 44 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ab27985..3e33a0c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 0.0.8 + +- Cleanup + ## 0.0.7 - Cleanup diff --git a/Documentation/Function/Configuration.configuration.html b/Documentation/Function/Configuration.configuration.html index 76a543d..d2f6335 100644 --- a/Documentation/Function/Configuration.configuration.html +++ b/Documentation/Function/Configuration.configuration.html @@ -1 +1 @@ -configuration | astro-biome - v0.0.7

Generated using TypeDoc

\ No newline at end of file +configuration | astro-biome - v0.0.8

Generated using TypeDoc

\ No newline at end of file diff --git a/Documentation/Function/Configuration.readFile.html b/Documentation/Function/Configuration.readFile.html index bdddecb..c7364f6 100644 --- a/Documentation/Function/Configuration.readFile.html +++ b/Documentation/Function/Configuration.readFile.html @@ -1,4 +1,4 @@ -readFile | astro-biome - v0.0.7
  • Asynchronously reads the entire contents of a file.

    +readFile | astro-biome - v0.0.8
    • Asynchronously reads the entire contents of a file.

      If no encoding is specified (using options.encoding), the data is returned as a Buffer object. Otherwise, the data will be a string.

      If options is a string, then it specifies the encoding.

      @@ -20,14 +20,14 @@

      Parameters

      • path: PathLike | FileHandle

        filename or FileHandle

      • Optional options: null | {
            encoding?: null;
            flag?: OpenMode;
        } & Abortable

      Returns Promise<Buffer>

      Fulfills with the contents of the file.

      Since

      v10.0.0

      -
    • Asynchronously reads the entire contents of a file.

      +
    • Asynchronously reads the entire contents of a file.

      Parameters

      • path: PathLike | FileHandle

        A path to a file. If a URL is provided, it must use the file: protocol. If a FileHandle is provided, the underlying file will not be closed automatically.

      • options: {
            encoding: BufferEncoding;
            flag?: OpenMode | undefined;
        } & Abortable | BufferEncoding

        An object that may contain an optional flag. If a flag is not provided, it defaults to 'r'.

        -

      Returns Promise<string>

    • Asynchronously reads the entire contents of a file.

      +

    Returns Promise<string>

  • Asynchronously reads the entire contents of a file.

    Parameters

    • path: PathLike | FileHandle

      A path to a file. If a URL is provided, it must use the file: protocol. If a FileHandle is provided, the underlying file will not be closed automatically.

    • Optional options: null | BufferEncoding | ObjectEncodingOptions & Abortable & {
          flag?: OpenMode | undefined;
      }

      An object that may contain an optional flag. If a flag is not provided, it defaults to 'r'.

      -

    Returns Promise<string | Buffer>

Generated using TypeDoc

\ No newline at end of file +

Returns Promise<string | Buffer>

Generated using TypeDoc

\ No newline at end of file diff --git a/Documentation/Function/Configuration.resolve.html b/Documentation/Function/Configuration.resolve.html index b30579e..a4d878c 100644 --- a/Documentation/Function/Configuration.resolve.html +++ b/Documentation/Function/Configuration.resolve.html @@ -1,4 +1,4 @@ -resolve | astro-biome - v0.0.7
  • The right-most parameter is considered {to}. Other parameters are considered an array of {from}.

    +resolve | astro-biome - v0.0.8
    • The right-most parameter is considered {to}. Other parameters are considered an array of {from}.

      Starting from leftmost {from} parameter, resolves {to} to an absolute path.

      If {to} isn't already absolute, {from} arguments are prepended in right to left order, until an absolute path is found. If after using all {from} paths still no absolute path is found, @@ -6,4 +6,4 @@ and trailing slashes are removed unless the path gets resolved to the root directory.

      Parameters

      • Rest ...paths: string[]

        A sequence of paths or path segments.

      Returns string

      Throws

      if any of the arguments is not a string.

      -

    Generated using TypeDoc

    \ No newline at end of file +

Generated using TypeDoc

\ No newline at end of file diff --git a/Documentation/Function/Integration.Merge.html b/Documentation/Function/Integration.Merge.html index db609ef..08d90d4 100644 --- a/Documentation/Function/Integration.Merge.html +++ b/Documentation/Function/Integration.Merge.html @@ -1,2 +1,2 @@ -Merge | astro-biome - v0.0.7
  • Merges multiple objects of type Ts using the provided merge functions and built-in metadata.

    -

    Type Parameters

    • Ts extends readonly unknown[]

    Parameters

    • Rest ...Objects: Ts

    Returns DeepMergeHKT<Ts, Readonly<{
        DeepMergeArraysURI: "DeepMergeLeafURI";
        DeepMergeMapsURI: "DeepMergeMapsDefaultURI";
        DeepMergeOthersURI: "DeepMergeLeafURI";
        DeepMergeRecordsURI: "DeepMergeRecordsDefaultURI";
        DeepMergeSetsURI: "DeepMergeSetsDefaultURI";
    }>, Readonly<{
        key: PropertyKey;
        parents: readonly Readonly<Record<PropertyKey, unknown>>[];
    }>>

Generated using TypeDoc

\ No newline at end of file +Merge | astro-biome - v0.0.8
  • Merges multiple objects of type Ts using the provided merge functions and built-in metadata.

    +

    Type Parameters

    • Ts extends readonly unknown[]

    Parameters

    • Rest ...Objects: Ts

    Returns DeepMergeHKT<Ts, Readonly<{
        DeepMergeArraysURI: "DeepMergeLeafURI";
        DeepMergeMapsURI: "DeepMergeMapsDefaultURI";
        DeepMergeOthersURI: "DeepMergeLeafURI";
        DeepMergeRecordsURI: "DeepMergeRecordsDefaultURI";
        DeepMergeSetsURI: "DeepMergeSetsDefaultURI";
    }>, Readonly<{
        key: PropertyKey;
        parents: readonly Readonly<Record<PropertyKey, unknown>>[];
    }>>

Generated using TypeDoc

\ No newline at end of file diff --git a/Documentation/Function/Integration.integration.html b/Documentation/Function/Integration.integration.html index 4857c3b..5688928 100644 --- a/Documentation/Function/Integration.integration.html +++ b/Documentation/Function/Integration.integration.html @@ -1 +1 @@ -integration | astro-biome - v0.0.7

Generated using TypeDoc

\ No newline at end of file +integration | astro-biome - v0.0.8

Generated using TypeDoc

\ No newline at end of file diff --git a/Documentation/Interface/Configuration.Type.html b/Documentation/Interface/Configuration.Type.html index 74cccd0..6bbad8b 100644 --- a/Documentation/Interface/Configuration.Type.html +++ b/Documentation/Interface/Configuration.Type.html @@ -1 +1 @@ -Type | astro-biome - v0.0.7
interface Type ((File) => Promise<string>)

Generated using TypeDoc

\ No newline at end of file +Type | astro-biome - v0.0.8
interface Type ((File) => Promise<string>)

Generated using TypeDoc

\ No newline at end of file diff --git a/Documentation/Interface/Integration.Type.html b/Documentation/Interface/Integration.Type.html index 89342cb..2929768 100644 --- a/Documentation/Interface/Integration.Type.html +++ b/Documentation/Interface/Integration.Type.html @@ -1 +1 @@ -Type | astro-biome - v0.0.7
interface Type ((Option) => AstroIntegration)

Generated using TypeDoc

\ No newline at end of file +Type | astro-biome - v0.0.8
interface Type ((Option) => AstroIntegration)

Generated using TypeDoc

\ No newline at end of file diff --git a/Documentation/Interface/Option.Type.html b/Documentation/Interface/Option.Type.html index abd3069..5466ca1 100644 --- a/Documentation/Interface/Option.Type.html +++ b/Documentation/Interface/Option.Type.html @@ -1,4 +1,4 @@ -Type | astro-biome - v0.0.7

Interface Type

interface Type {
    Action?: boolean | default;
    Biome?: boolean | Type;
    Cache?: boolean | default;
    Exclude?: boolean | Type | Type[] | Set<Type>;
    Files?: string | boolean | string[];
    Logger?: boolean | Type;
    Path?: boolean | Type | Type[] | Set<Type>;
}

Hierarchy

  • default
    • Type

Properties

Action? +Type | astro-biome - v0.0.8

Interface Type

interface Type {
    Action?: boolean | default;
    Biome?: boolean | Type;
    Cache?: boolean | default;
    Exclude?: boolean | Type | Type[] | Set<Type>;
    Files?: string | boolean | string[];
    Logger?: boolean | Type;
    Path?: boolean | Type | Type[] | Set<Type>;
}

Hierarchy

  • default
    • Type

Properties

Properties

Action?: boolean | default

Action pipe configuration.

-
Biome?: boolean | Type
Cache?: boolean | default

Configuration for the target cache.

+
Biome?: boolean | Type
Cache?: boolean | default

Configuration for the target cache.

Default

{ Search: "./", Folder: "./Cache" }
 
Exclude?: boolean | Type | Type[] | Set<Type>

Criteria for excluding files.

@@ -17,4 +17,4 @@
Path?: boolean | Type | Type[] | Set<Type>

Configuration for the target path(s).

Default

"./Target"
 
-

Generated using TypeDoc

\ No newline at end of file +

Generated using TypeDoc

\ No newline at end of file diff --git a/Documentation/Module/Biome.html b/Documentation/Module/Biome.html index 0382977..9d56cfb 100644 --- a/Documentation/Module/Biome.html +++ b/Documentation/Module/Biome.html @@ -1,3 +1,3 @@ -Biome | astro-biome - v0.0.7

Module Biome

Index

Type Aliases

Type +Biome | astro-biome - v0.0.8

Generated using TypeDoc

\ No newline at end of file +

Generated using TypeDoc

\ No newline at end of file diff --git a/Documentation/Module/Configuration.html b/Documentation/Module/Configuration.html index 8cce8ac..a8d9e25 100644 --- a/Documentation/Module/Configuration.html +++ b/Documentation/Module/Configuration.html @@ -1,5 +1,5 @@ -Configuration | astro-biome - v0.0.7

Module Configuration

Index

Interfaces

Type +Configuration | astro-biome - v0.0.8

Generated using TypeDoc

\ No newline at end of file +

Generated using TypeDoc

\ No newline at end of file diff --git a/Documentation/Module/Integration.html b/Documentation/Module/Integration.html index 6f588b8..84da3a2 100644 --- a/Documentation/Module/Integration.html +++ b/Documentation/Module/Integration.html @@ -1,5 +1,5 @@ -Integration | astro-biome - v0.0.7

Module Integration

Index

Interfaces

Type +Integration | astro-biome - v0.0.8

Generated using TypeDoc

\ No newline at end of file +

Generated using TypeDoc

\ No newline at end of file diff --git a/Documentation/Module/Option.html b/Documentation/Module/Option.html index 6498fae..a7cfe09 100644 --- a/Documentation/Module/Option.html +++ b/Documentation/Module/Option.html @@ -1,3 +1,3 @@ -Option | astro-biome - v0.0.7

Module Option

Index

Interfaces

Type +Option | astro-biome - v0.0.8

Generated using TypeDoc

\ No newline at end of file +

Generated using TypeDoc

\ No newline at end of file diff --git a/Documentation/Type/Biome.Type.html b/Documentation/Type/Biome.Type.html index 39b910c..18af703 100644 --- a/Documentation/Type/Biome.Type.html +++ b/Documentation/Type/Biome.Type.html @@ -1 +1 @@ -Type | astro-biome - v0.0.7

Generated using TypeDoc

\ No newline at end of file +Type | astro-biome - v0.0.8

Type alias Type

Type: Omit<Configuration, "$schema">

Generated using TypeDoc

\ No newline at end of file diff --git a/Documentation/Variable/Biome.biome.html b/Documentation/Variable/Biome.biome.html index 4712d45..2fd1b5f 100644 --- a/Documentation/Variable/Biome.biome.html +++ b/Documentation/Variable/Biome.biome.html @@ -1 +1 @@ -biome | astro-biome - v0.0.7

Generated using TypeDoc

\ No newline at end of file +biome | astro-biome - v0.0.8

Generated using TypeDoc

\ No newline at end of file diff --git a/Documentation/Variable/Integration.Default.html b/Documentation/Variable/Integration.Default.html index 65dc2cc..1a05fbc 100644 --- a/Documentation/Variable/Integration.Default.html +++ b/Documentation/Variable/Integration.Default.html @@ -1 +1 @@ -Default | astro-biome - v0.0.7
Default: Omit<DeepMergeRecordsDefaultHKTInternalProps<[{
    Action: {
        Accomplished: ((__namedParameters) => Promise<string>);
        Changed: ((Plan) => Promise<any>);
        Failed: ((__namedParameters) => Promise<string>);
        Fulfilled: ((__namedParameters) => Promise<string | false>);
        Passed: ((On) => Promise<true>);
        Read: ((__namedParameters) => Promise<string>);
        Wrote: ((__namedParameters) => Promise<any>);
    };
    Cache: {
        Folder: string;
        Search: string;
    };
    Exclude: false;
    Files: string;
    Logger: 2;
    Path: string;
}, {
    Action: {
        Accomplished: ((On) => Promise<string>);
        Failed: ((On) => Promise<string>);
        Fulfilled: ((Plan) => Promise<string | false>);
    };
    Biome: any;
}], Readonly<{
    DeepMergeArraysURI: "DeepMergeLeafURI";
    DeepMergeMapsURI: "DeepMergeMapsDefaultURI";
    DeepMergeOthersURI: "DeepMergeLeafURI";
    DeepMergeRecordsURI: "DeepMergeRecordsDefaultURI";
    DeepMergeSetsURI: "DeepMergeSetsDefaultURI";
}>, Readonly<{
    key: PropertyKey;
    parents: readonly Readonly<Record<PropertyKey, unknown>>[];
}>>, "__proto__">

Generated using TypeDoc

\ No newline at end of file +Default | astro-biome - v0.0.8
Default: Omit<DeepMergeRecordsDefaultHKTInternalProps<[{
    Action: {
        Accomplished: ((__namedParameters) => Promise<string>);
        Changed: ((Plan) => Promise<any>);
        Failed: ((__namedParameters) => Promise<string>);
        Fulfilled: ((__namedParameters) => Promise<string | false>);
        Passed: ((On) => Promise<true>);
        Read: ((__namedParameters) => Promise<string>);
        Wrote: ((__namedParameters) => Promise<any>);
    };
    Cache: {
        Folder: string;
        Search: string;
    };
    Exclude: false;
    Files: string;
    Logger: 2;
    Path: string;
}, {
    Action: {
        Accomplished: ((On) => Promise<string>);
        Failed: ((On) => Promise<string>);
        Fulfilled: ((Plan) => Promise<string | false>);
    };
    Biome: any;
}], Readonly<{
    DeepMergeArraysURI: "DeepMergeLeafURI";
    DeepMergeMapsURI: "DeepMergeMapsDefaultURI";
    DeepMergeOthersURI: "DeepMergeLeafURI";
    DeepMergeRecordsURI: "DeepMergeRecordsDefaultURI";
    DeepMergeSetsURI: "DeepMergeSetsDefaultURI";
}>, Readonly<{
    key: PropertyKey;
    parents: readonly Readonly<Record<PropertyKey, unknown>>[];
}>>, "__proto__">

Generated using TypeDoc

\ No newline at end of file diff --git a/Documentation/Variable/Option.option.html b/Documentation/Variable/Option.option.html index cbff761..f2fd805 100644 --- a/Documentation/Variable/Option.option.html +++ b/Documentation/Variable/Option.option.html @@ -1 +1 @@ -option | astro-biome - v0.0.7
option: Omit<DeepMergeRecordsDefaultHKTInternalProps<[{
    Action: {
        Accomplished: ((__namedParameters) => Promise<string>);
        Changed: ((Plan) => Promise<any>);
        Failed: ((__namedParameters) => Promise<string>);
        Fulfilled: ((__namedParameters) => Promise<string | false>);
        Passed: ((On) => Promise<true>);
        Read: ((__namedParameters) => Promise<string>);
        Wrote: ((__namedParameters) => Promise<any>);
    };
    Cache: {
        Folder: string;
        Search: string;
    };
    Exclude: false;
    Files: string;
    Logger: 2;
    Path: string;
}, {
    Action: {
        Accomplished: ((On) => Promise<string>);
        Failed: ((On) => Promise<string>);
        Fulfilled: ((Plan) => Promise<string | false>);
    };
    Biome: any;
}], Readonly<{
    DeepMergeArraysURI: "DeepMergeLeafURI";
    DeepMergeMapsURI: "DeepMergeMapsDefaultURI";
    DeepMergeOthersURI: "DeepMergeLeafURI";
    DeepMergeRecordsURI: "DeepMergeRecordsDefaultURI";
    DeepMergeSetsURI: "DeepMergeSetsDefaultURI";
}>, Readonly<{
    key: PropertyKey;
    parents: readonly Readonly<Record<PropertyKey, unknown>>[];
}>>, "__proto__">

Generated using TypeDoc

\ No newline at end of file +option | astro-biome - v0.0.8
option: Omit<DeepMergeRecordsDefaultHKTInternalProps<[{
    Action: {
        Accomplished: ((__namedParameters) => Promise<string>);
        Changed: ((Plan) => Promise<any>);
        Failed: ((__namedParameters) => Promise<string>);
        Fulfilled: ((__namedParameters) => Promise<string | false>);
        Passed: ((On) => Promise<true>);
        Read: ((__namedParameters) => Promise<string>);
        Wrote: ((__namedParameters) => Promise<any>);
    };
    Cache: {
        Folder: string;
        Search: string;
    };
    Exclude: false;
    Files: string;
    Logger: 2;
    Path: string;
}, {
    Action: {
        Accomplished: ((On) => Promise<string>);
        Failed: ((On) => Promise<string>);
        Fulfilled: ((Plan) => Promise<string | false>);
    };
    Biome: any;
}], Readonly<{
    DeepMergeArraysURI: "DeepMergeLeafURI";
    DeepMergeMapsURI: "DeepMergeMapsDefaultURI";
    DeepMergeOthersURI: "DeepMergeLeafURI";
    DeepMergeRecordsURI: "DeepMergeRecordsDefaultURI";
    DeepMergeSetsURI: "DeepMergeSetsDefaultURI";
}>, Readonly<{
    key: PropertyKey;
    parents: readonly Readonly<Record<PropertyKey, unknown>>[];
}>>, "__proto__">

Generated using TypeDoc

\ No newline at end of file diff --git a/Documentation/assets/style.css b/Documentation/assets/style.css index 98a4377..072daed 100644 --- a/Documentation/assets/style.css +++ b/Documentation/assets/style.css @@ -405,7 +405,8 @@ dd { } body { background: var(--color-background); - font-family: "Segoe UI", sans-serif; + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", + Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji"; font-size: 16px; color: var(--color-text); } diff --git a/Documentation/index.html b/Documentation/index.html index 734d6ef..6e79afd 100644 --- a/Documentation/index.html +++ b/Documentation/index.html @@ -1,4 +1,4 @@ -astro-biome - v0.0.7

astro-biome - v0.0.7

Astro
Related:


Stars
Compress
🗜️ AstroJS compression utilities.


Build
Dependencies
Version
Downloads


Stars
Critters
🦔 AstroJS GoogleChromeLabs Critters integration.


Build
Dependencies
Version
Downloads

+astro-biome - v0.0.8

astro-biome - v0.0.8

Astro
Related:


Stars
Compress
🗜️ AstroJS compression utilities.


Build
Dependencies
Version
Downloads


Stars
Critters
🦔 AstroJS GoogleChromeLabs Critters integration.


Build
Dependencies
Version
Downloads

🗻 AstroBiome

This Astro integration brings Biome tools your Astro project.

@@ -79,4 +79,4 @@
import Biome from "astro-biome";

export default {
integrations: [
Biome({
Logger: 0,
}),
],
};

Changelog

See CHANGELOG.md for a history of changes to this integration.

-

Generated using TypeDoc

\ No newline at end of file +

Generated using TypeDoc

\ No newline at end of file diff --git a/README.md b/README.md index 4ceb944..3a4258d 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -

Astro
Related:


Stars
Compress
🗜️ AstroJS compression utilities.


Build
Dependencies
Version
Downloads


Stars
Critters
🦔 AstroJS GoogleChromeLabs Critters integration.


Build
Dependencies
Version
Downloads

+

Astro
Related:


Stars
Compress
🗜️ AstroJS compression utilities.


Build
Dependencies
Version
Downloads


Stars
Critters
🦔 AstroJS GoogleChromeLabs Critters integration.


Build
Dependencies
Version
Downloads

# 🗻 [AstroBiome] diff --git a/Target/Notation/Biome.json b/Target/Notation/Biome.json index d32095b..877e37a 100644 --- a/Target/Notation/Biome.json +++ b/Target/Notation/Biome.json @@ -1,5 +1,5 @@ { - "$schema": "https://biomejs.dev/schemas/1.5.3/schema.json", + "$schema": "https://biomejs.dev/schemas/1.6.0/schema.json", "files": { "ignore": [ "**/Target/**/*", @@ -65,11 +65,7 @@ "nursery": { "all": true, "noNodejsModules": "off", - "noUselessLoneBlockStatements": "off", - "useFilenamingConvention": "off", - "useImportRestrictions": "off", - "useNodejsImportProtocol": "off", - "useShorthandFunctionType": "off" + "useImportRestrictions": "off" }, "performance": { "all": true diff --git a/package.json b/package.json index fc2a63d..707d3f4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "astro-biome", - "version": "0.0.7", + "version": "0.0.8", "private": false, "description": "🗻 AstroJS Biome tools.", "keywords": [ @@ -13,13 +13,13 @@ "performance", "withastro" ], - "homepage": "https://github.com/NikolaRHristov/AstroBiome#readme", + "homepage": "https://github.com/Playform/AstroBiome#readme", "bugs": { - "url": "https://github.com/NikolaRHristov/AstroBiome/issues" + "url": "https://github.com/Playform/AstroBiome/issues" }, "repository": { "type": "git", - "url": "git+https://github.com/NikolaRHristov/AstroBiome.git" + "url": "git+https://github.com/Playform/AstroBiome.git" }, "license": "SEE LICENSE IN LICENSE", "author": { @@ -38,12 +38,12 @@ "@biomejs/js-api": "nightly", "@biomejs/wasm-nodejs": "1.6.0", "deepmerge-ts": "5.1.0", - "files-pipe": "2.1.11" + "files-pipe": "2.1.12" }, "devDependencies": { - "astro": "4.4.15", + "astro": "4.5.0", "esbuild-plugin-copy": "2.1.1", - "typescript-esbuild": "0.3.12" + "typescript-esbuild": "0.4.0" }, "publishConfig": { "access": "public"