Skip to content

Commit

Permalink
chore: rename src/build.js to src/bld.js
Browse files Browse the repository at this point in the history
  • Loading branch information
ayushmanchhabra committed Dec 1, 2023
1 parent cbfc390 commit c17034b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/build.js → src/bld.js
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ import plist from "plist";
* @param {LinuxRc | OsxRc | WinRc} app Multi platform configuration options
* @return {Promise<undefined>}
*/
export async function build(
export async function bld(
files,
nwDir,
outDir,
Expand Down
4 changes: 2 additions & 2 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { getVersionManifest } from "./util/versionManifest.js";
import { parse } from "./util/parse.js";
import { validate } from "./util/validate.js";

import { build } from "./build.js";
import { bld } from "./bld.js";
import { get } from "./get.js";
import { run } from "./run.js";
import { getReleaseInfo } from "./util.js";
Expand Down Expand Up @@ -164,7 +164,7 @@ const nwbuild = async (options) => {
argv: options.argv,
});
} else if (options.mode === "build") {
await build(
await bld(
options.glob === true ? files : options.srcDir,
nwDir,
options.outDir,
Expand Down

0 comments on commit c17034b

Please sign in to comment.