Skip to content

Commit

Permalink
squash!
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolaRHristov committed Mar 18, 2024
1 parent b10125f commit 4478804
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 30 deletions.
15 changes: 4 additions & 11 deletions Source/Function/Document.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,17 +40,10 @@ export default (async (...[File]: Parameters<Type>) => {
"--entryPointStrategy expand",
"--mergeModulesRenameDefaults",
"--mergeModulesMergeMode module",
`--entryPoints ${Object.values(Object.fromEntries(
Pipe.map((File) => [
File.replace("Source/", "")
.split(".")
.slice(0, -1.0)
.join("."),
File,
]),
)).join(
" --entryPoints ",
)}`,
`--entryPoints ${Pipe.map((File) => [
File.replace("Source/", "").split(".").slice(0, -1.0).join("."),
File,
]).join(" --entryPoints ")}`,
].join(" "),
);
}) satisfies Type as Type;
Expand Down
19 changes: 0 additions & 19 deletions Source/Function/Exec.ts

This file was deleted.

0 comments on commit 4478804

Please sign in to comment.