Skip to content

Commit

Permalink
squash!
Browse files Browse the repository at this point in the history
Signed-off-by: Nikola Hristov <[email protected]>
  • Loading branch information
NikolaRHristov committed Jun 30, 2024
1 parent 3d984dd commit 2012ee3
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 13 deletions.
22 changes: 10 additions & 12 deletions Source/Function/Integration.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,14 @@ export default ((...[_Option = {}]: Parameters<Interface>) => {
.NODE,
});

if (Biome && typeof Biome === "object") {
_Biome.applyConfiguration(Biome);
console.log(Biome);

try {
if (Biome && typeof Biome === "object") {
_Biome.applyConfiguration(Biome);
}
} catch (_Error) {
console.log(_Error);
}

const _Action = Merge(Action, {
Expand All @@ -53,21 +59,13 @@ export default ((...[_Option = {}]: Parameters<Interface>) => {
),
}).content;
} catch (_Error) {
console.log(_Error);

return On.Buffer;
}
},
} satisfies Action);

// try {
// if (typeof Biome === "object" && _Biome) {
// // @ts-ignore
// Biome["$schema"] = undefined;
// _Biome.applyConfiguration(Biome);
// }
// } catch (_Error) {
// console.log(_Error);
// }

for (const Path of Paths) {
await (
await (
Expand Down
2 changes: 1 addition & 1 deletion Target/Function/Integration.js

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

0 comments on commit 2012ee3

Please sign in to comment.