nw-builder 3.8.2 → 4.0.0-rc.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/CHANGELOG.md +18 -0
- package/dist/index.cjs +13 -6
- package/docs/api.md +5 -0
- package/docs/getting-started.md +138 -0
- package/docs/index.md +12 -0
- package/index.js +3 -0
- package/lib/downloader.cjs +0 -1
- package/lib/index.cjs +2 -8
- package/package.json +4 -3
- package/src/api/nwbuild.js +50 -0
- package/src/api/run.js +39 -0
- package/src/constants/Options.js +2 -1
- package/src/index.js +3 -1
- package/src/utilities/checkPkgOptions.js +0 -2
- package/src/utilities/detectCurrentPlatform.js +1 -1
- package/src/utilities/execute.js +18 -0
- package/src/utilities/getNwPath.js +14 -0
package/.github/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,24 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [4.0.0-rc.1]
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- Install `nw-install`
|
|
15
|
+
- Create new run mode in a separate function
|
|
16
|
+
- Call new run mode and build mode through `nwbuild` function
|
|
17
|
+
|
|
18
|
+
### Removed
|
|
19
|
+
|
|
20
|
+
- Remove `NwBuilder` from exports
|
|
21
|
+
|
|
22
|
+
## [3.8.2] - 2022-08-08
|
|
23
|
+
|
|
24
|
+
### Added
|
|
25
|
+
|
|
26
|
+
- Support for multiple file paths in CLI
|
|
27
|
+
|
|
10
28
|
## [3.8.1] - 2022-07-18
|
|
11
29
|
|
|
12
30
|
### Changed
|