-
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.
fix(get):
FFmpeg
decompression (#962)
- Loading branch information
1 parent
55a35ea
commit f05b386
Showing
7 changed files
with
96 additions
and
91 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
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": "4.4.1", | ||
"version": "4.4.2", | ||
"description": "Build NW.js desktop applications for MacOS, Windows and Linux.", | ||
"keywords": [ | ||
"NW.js", | ||
|
@@ -48,8 +48,7 @@ | |
"doc:bld": "node .github/jsdoc.config.cjs && vitepress build doc", | ||
"test:unit": "node --test test/unit/index.js", | ||
"test:e2e": "node --test test/e2e/index.js", | ||
"test:mod": "npm link nw-builder && cd test/fixture && node demo.js", | ||
"test:cli": "npm link nw-builder && cd test/fixture && nwbuild --platform win --arch x64 --outDir out --no-glob app" | ||
"demo": "cd test/fixture && node demo.js" | ||
}, | ||
"devDependencies": { | ||
"concurrently": "^8.2.1", | ||
|
@@ -73,6 +72,6 @@ | |
}, | ||
"packageManager": "[email protected]", | ||
"engines": { | ||
"node": ">= v16.20.1 || >= v18.18.0 || >= v20.7.0" | ||
"node": "^16.20.1 || ^18.18.2 || >= 20.8.1" | ||
} | ||
} |
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
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
This file was deleted.
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,9 +1,20 @@ | ||
import nwbuild from "nw-builder"; | ||
import nwbuild from "../../src/index.js"; | ||
|
||
await nwbuild({ | ||
mode: "build", | ||
version: "0.80.0", | ||
srcDir: "app", | ||
outDir: "out", | ||
mode: "get", | ||
version: "stable", | ||
flavor: "normal", | ||
platform: "linux", | ||
arch: "x64", | ||
cache: true, | ||
ffmpeg: true, | ||
glob: false, | ||
app: { | ||
company: "Some Company", | ||
fileDescription: "Process Name", | ||
productName: "Some Product", | ||
legalCopyright: "Copyright (c) 2023", | ||
}, | ||
logLevel: "debug", | ||
}); |