Skip to content

Commit

Permalink
squash!
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolaRHristov committed Sep 24, 2023
1 parent 9c8b002 commit 8d5b11b
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Source/Execution/TypeScriptESBuild.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env node

import Build from "../Fn/Build.js";
import _JSON from "../Fn/JSON.js";
import Build from "../Function/Build.js";
import _JSON from "../Function/JSON.js";

import { Command } from "commander";

Expand Down
2 changes: 1 addition & 1 deletion Source/Fn/Build.ts → Source/Function/Build.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import type { BuildOptions as Option } from "esbuild";
import type { Pattern } from "fast-glob";

import File from "../Fn/File.js";
import File from "../Function/File.js";
import Default from "../Object/Option.js";

import { exec as Exec } from "child_process";
Expand Down
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion Source/Object/Option.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export default {
],
define: {
"process.env.VERSION_PACKAGE": `'${(
await (await import("../Fn/JSON.js")).default("package.json")
await (await import("../Function/JSON.js")).default("package.json")
)?.version}'`,
},
} satisfies Option;

0 comments on commit 8d5b11b

Please sign in to comment.