Skip to content

Commit

Permalink
v4.3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Ayushman Chhabra committed Aug 2, 2023
1 parent 547e90c commit 0148054
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 5 deletions.
3 changes: 3 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

## [4.3.4] - 2023-08-02

## Changed

- Conditonally set Icon for Windows build.
- Refactor `get` mode into a single file.

## [4.3.3] - 2023-07-25
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nw-builder",
"version": "4.3.3",
"version": "4.3.4",
"description": "Build NW.js desktop applications for MacOS, Windows and Linux.",
"keywords": [
"NW.js",
Expand Down
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ const nwbuild = async (options) => {
options.glob,
);
}
if (options.mode === "build") {
else if (options.mode === "build") {
await build(
options.glob === true ? files : options.srcDir,
nwDir,
Expand Down
2 changes: 1 addition & 1 deletion test/fixture/demo.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import nwbuild from "nw-builder";

await nwbuild({
mode: "build",
version: "0.77.0",
version: "0.78.1",
srcDir: "app",
outDir: "out",
glob: false,
Expand Down

0 comments on commit 0148054

Please sign in to comment.