Skip to content

Commit

Permalink
squash!
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolaRHristov committed Jan 24, 2024
1 parent f2f8e5d commit b13743f
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 9 deletions.
4 changes: 2 additions & 2 deletions Documentation/Interface/Interface_Merge.Generic.html

Large diffs are not rendered by default.

4 changes: 3 additions & 1 deletion Source/Function/Exec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@ export default (async (
if (typeof Echo === "function") {
stdout?.on("data", (Data) => Echo(Data));
}
} catch (_Error) {}
} catch (_Error) {
console.log(_Error);
}
}) satisfies Type as Type;

import type Type from "../Interface/Exec.js";
4 changes: 3 additions & 1 deletion Source/Variable/ESBuild.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@ export default {
},
)
: {};
} catch (_Error) {}
} catch (_Error) {
console.log(_Error);
}
});
},
},
Expand Down
2 changes: 1 addition & 1 deletion Target/Function/Build.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Target/Function/Exec.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
var r=async(...[a,t=e=>console.log(e)])=>{try{const{stdout:e}=(await import("child_process")).exec(a);typeof t=="function"&&e?.on("data",o=>t(o))}catch{}};export{r as default};
var r=async(...[o,t=e=>console.log(e)])=>{try{const{stdout:e}=(await import("node:child_process")).exec(o);typeof t=="function"&&e?.on("data",a=>t(a))}catch(e){console.log(e)}};export{r as default};
2 changes: 1 addition & 1 deletion Target/Function/File.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Target/Function/JSON.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
var t=async(...[e,a])=>JSON.parse((await(await import("fs/promises")).readFile(`${a??"."}/${e}`,"utf-8")).toString());export{t as default};
var t=async(...[e,a])=>JSON.parse((await(await import("node:fs/promises")).readFile(`${a??"."}/${e}`,"utf-8")).toString());export{t as default};
2 changes: 1 addition & 1 deletion Target/Variable/ESBuild.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit b13743f

Please sign in to comment.