Skip to content

Commit

Permalink
squash!
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolaRHristov committed Apr 3, 2024
1 parent 8dc3f44 commit e56b5a5
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 112 deletions.
7 changes: 0 additions & 7 deletions Configuration/ESBuild.d.ts

This file was deleted.

46 changes: 0 additions & 46 deletions Configuration/ESBuild.js

This file was deleted.

53 changes: 0 additions & 53 deletions Configuration/ESBuild.ts

This file was deleted.

12 changes: 6 additions & 6 deletions Source/Function/Document.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
*/
export default (async (...[File]: Parameters<Type>) => {
for (const _File of File) {
for (const __File of await (await import("fast-glob")).default(
_File.replaceAll("'", "").replaceAll('"', ""),
)) {
for (const __File of await (
await import("fast-glob")
).default(_File.replaceAll("'", "").replaceAll('"', ""))) {
Pipe.push(__File);
}
}
Expand All @@ -17,7 +17,7 @@ export default (async (...[File]: Parameters<Type>) => {
[
"typedoc",
"--commentStyle all",
`--customCss ${resolve(`${Current}/../Stylesheet/Theme.css`)}`,
`--customCss ${resolve(`${Current}/../../Stylesheet/Theme.css`)}`,
"--includeVersion",
"--out ./Documentation",
// TODO: FIX THIS
Expand All @@ -42,7 +42,7 @@ export default (async (...[File]: Parameters<Type>) => {
"--mergeModulesRenameDefaults",
"--mergeModulesMergeMode module",
`--entryPoints ${Pipe.join(" --entryPoints ")}`,
].join(" "),
].join(" ")
);
}) satisfies Type as Type;

Expand All @@ -55,5 +55,5 @@ export const { resolve } = await import("path");
export const Pipe: string[] = [];

export const Current = (await import("url")).fileURLToPath(
(await import("path")).dirname(import.meta.url),
(await import("path")).dirname(import.meta.url)
);
File renamed without changes.

0 comments on commit e56b5a5

Please sign in to comment.