diff --git a/Documentation/Function/Build.Build.html.bak b/Documentation/Function/Build.Build.html.bak deleted file mode 100644 index 2a13b468..00000000 --- a/Documentation/Function/Build.Build.html.bak +++ /dev/null @@ -1,151 +0,0 @@ -
An array of file patterns to be processed. Each pattern can include wildcards (*) to match multiple files.
-Optional
Option: { An optional object that can contain two properties.
-Optional
ESBuild?: stringA string representing the ESBuild option.
-Optional
TypeA string representing the TypeScript option.
-A promise that resolves when the processing is complete.
- -Generated using TypeDoc
The 'Exec' function is an asynchronous function that executes a command and logs the -stdout of the child process.
-The 'Command' parameter is a string that represents the -command you want to execute. It can be any valid command that can be executed in a -terminal or command prompt.
-Optional
Echo: false | ((Return) => void)An optional parameter that controls whether the stdout -of the child process should be logged. If set to 'false', no logging will occur. If set -to a function, the function will be called with the stdout data as a parameter for custom -logging. If not provided, stdout will be logged to the console by default.
-A promise that resolves when the command execution is complete.
- -Generated using TypeDoc
Deeply merge objects.
-Rest
...objects: readonly [Ts]The objects to merge.
-Generated using TypeDoc
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, -the current working directory is used as well. The resulting path is normalized, -and trailing slashes are removed unless the path gets resolved to the root directory.
-Rest
...paths: string[]A sequence of paths or path segments.
-if any of the arguments is not a string.
-Generated using TypeDoc
The 'Exec' function is an asynchronous function that executes a command and logs the -stdout of the child process.
-The 'Command' parameter is a string that represents the -command you want to execute. It can be any valid command that can be executed in a -terminal or command prompt.
-Optional
Echo: false | ((Return) => void)An optional parameter that controls whether the stdout -of the child process should be logged. If set to 'false', no logging will occur. If set -to a function, the function will be called with the stdout data as a parameter for custom -logging. If not provided, stdout will be logged to the console by default.
-A promise that resolves when the command execution is complete.
- -Generated using TypeDoc
Generated using TypeDoc
The function 'JSON' is a TypeScript function that reads a JSON file and returns its -parsed content.
-The File
parameter is a string that represents the name or
-path of the JSON file that you want to parse.
Optional
From: stringThe From
parameter is an optional string that represents
-the directory path from which the JSON file should be loaded. If From
is provided,
-it will be used as the base directory path. If From
is not provided, the current
-directory will be used as the base directory path.
Generated using TypeDoc
Generated using TypeDoc
Represents a function that processes file patterns.
-