-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e1743b4
commit 16d9f37
Showing
10 changed files
with
113 additions
and
84 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,34 @@ | ||
import type Interface from "../Interface/Build.js"; | ||
|
||
/** | ||
* @module Build | ||
* | ||
*/ | ||
declare const _default: Interface; | ||
export default _default; | ||
export declare const Exec: import("../Interface/Exec.js").default; | ||
export declare const Merge: <Ts extends readonly unknown[]>(...objects: Ts) => import("deepmerge-ts").DeepMergeHKT<Ts, Readonly<{ | ||
DeepMergeRecordsURI: "DeepMergeRecordsDefaultURI"; | ||
DeepMergeArraysURI: "DeepMergeArraysDefaultURI"; | ||
DeepMergeSetsURI: "DeepMergeSetsDefaultURI"; | ||
DeepMergeMapsURI: "DeepMergeMapsDefaultURI"; | ||
DeepMergeOthersURI: "DeepMergeLeafURI"; | ||
DeepMergeFilterValuesURI: "DeepMergeFilterValuesDefaultURI"; | ||
}>, Readonly<{ | ||
key: PropertyKey; | ||
parents: ReadonlyArray<Readonly<Record<PropertyKey, unknown>>>; | ||
}>>; | ||
export declare const Merge: <Ts extends readonly unknown[]>( | ||
...objects: Ts | ||
) => import("deepmerge-ts").DeepMergeHKT< | ||
Ts, | ||
Readonly<{ | ||
DeepMergeRecordsURI: "DeepMergeRecordsDefaultURI"; | ||
DeepMergeArraysURI: "DeepMergeArraysDefaultURI"; | ||
DeepMergeSetsURI: "DeepMergeSetsDefaultURI"; | ||
DeepMergeMapsURI: "DeepMergeMapsDefaultURI"; | ||
DeepMergeOthersURI: "DeepMergeLeafURI"; | ||
DeepMergeFilterValuesURI: "DeepMergeFilterValuesDefaultURI"; | ||
}>, | ||
Readonly<{ | ||
key: PropertyKey; | ||
parents: ReadonlyArray<Readonly<Record<PropertyKey, unknown>>>; | ||
}> | ||
>; | ||
export declare const Pipe: string[]; | ||
export declare const extname: (path: string) => string, basename: (path: string, suffix?: string) => string, relative: (from: string, to: string) => string, dirname: (path: string) => string, normalize: (path: string) => string, sep: "\\" | "/"; | ||
export declare const extname: (path: string) => string, | ||
basename: (path: string, suffix?: string) => string, | ||
relative: (from: string, to: string) => string, | ||
dirname: (path: string) => string, | ||
normalize: (path: string) => string, | ||
sep: "\\" | "/"; | ||
export declare const Current: string; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
import type Interface from "../Interface/Exec.js"; | ||
|
||
/** | ||
* @module Exec | ||
* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
import type Interface from "../Interface/File.js"; | ||
|
||
/** | ||
* @module File | ||
* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
import type Interface from "../Interface/JSON.js"; | ||
|
||
/** | ||
* @module JSON | ||
* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,29 @@ | ||
import type { Pattern } from "fast-glob"; | ||
|
||
/** | ||
* @module Build | ||
* | ||
*/ | ||
export default interface Interface { | ||
/** | ||
* Represents a function that processes file patterns. | ||
* | ||
* @param File - An array of file patterns to be processed. Each pattern can include wildcards (*) to match multiple files. | ||
* | ||
* @param Option - An optional object that can contain two properties. | ||
* | ||
* @param Option.ESBuild - A string representing the ESBuild option. | ||
* | ||
* @param Option.TypeScript - A string representing the TypeScript option. | ||
* | ||
*/ | ||
(File: Pattern[], Option?: { | ||
ESBuild?: string; | ||
TypeScript?: string; | ||
Watch?: boolean; | ||
Exclude?: Pattern[]; | ||
}): Promise<void>; | ||
/** | ||
* Represents a function that processes file patterns. | ||
* | ||
* @param File - An array of file patterns to be processed. Each pattern can include wildcards (*) to match multiple files. | ||
* | ||
* @param Option - An optional object that can contain two properties. | ||
* | ||
* @param Option.ESBuild - A string representing the ESBuild option. | ||
* | ||
* @param Option.TypeScript - A string representing the TypeScript option. | ||
* | ||
*/ | ||
( | ||
File: Pattern[], | ||
Option?: { | ||
ESBuild?: string; | ||
TypeScript?: string; | ||
Watch?: boolean; | ||
Exclude?: Pattern[]; | ||
}, | ||
): Promise<void>; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
import type { BuildOptions } from "esbuild"; | ||
|
||
/** | ||
* @module ESBuild | ||
* | ||
|