-
Notifications
You must be signed in to change notification settings - Fork 302
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(api)!: refactor run mode (#629)
- Loading branch information
1 parent
5fc6e62
commit 5d2ab43
Showing
13 changed files
with
365 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
import nwbuild from "./src/api/nwbuild.js"; | ||
|
||
export default nwbuild; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "nw-builder", | ||
"version": "3.8.2-beta.3", | ||
"version": "4.0.0-rc.1", | ||
"description": "Build NW.js desktop applications for Mac, Windows and Linux.", | ||
"keywords": [ | ||
"NW.js", | ||
|
@@ -9,7 +9,7 @@ | |
], | ||
"author": "Steffen Müller <[email protected]>", | ||
"license": "MIT", | ||
"main": "lib/index.cjs", | ||
"main": "./index.js", | ||
"type": "module", | ||
"homepage": "https://github.com/nwutils/nw-builder", | ||
"repository": { | ||
|
@@ -47,6 +47,7 @@ | |
"graceful-ncp": "^3.0.0", | ||
"inherits": "^2.0.4", | ||
"lodash": "^4.17.21", | ||
"nw-install": "^0.3.0", | ||
"plist": "^3.0.5", | ||
"progress": "^2.0.3", | ||
"rcedit": "^3.0.1", | ||
|
Oops, something went wrong.