@bghitcode/bghitapp 1.1.0 → 1.1.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/dist/cli.js +4 -4
- package/package.json +1 -1
- package/src-tauri/tauri.conf.json +0 -5
package/dist/cli.js
CHANGED
|
@@ -20,7 +20,7 @@ import { InvalidArgumentError, program as program$1, Option } from 'commander';
|
|
|
20
20
|
import fs$1 from 'fs';
|
|
21
21
|
|
|
22
22
|
var name = "@bghitcode/bghitapp";
|
|
23
|
-
var version = "1.1.
|
|
23
|
+
var version = "1.1.1";
|
|
24
24
|
var description = "🤱🏻 Turn any webpage into a desktop app with one command — by BghitCode.";
|
|
25
25
|
var engines = {
|
|
26
26
|
node: ">=18.0.0"
|
|
@@ -167,9 +167,9 @@ let tauriConfig = {
|
|
|
167
167
|
bundle: platformConfig.bundle,
|
|
168
168
|
app: {
|
|
169
169
|
...CommonConf.app,
|
|
170
|
-
trayIcon
|
|
171
|
-
...
|
|
172
|
-
|
|
170
|
+
...(platformConfig?.app?.trayIcon
|
|
171
|
+
? { trayIcon: { ...platformConfig.app.trayIcon } }
|
|
172
|
+
: {}),
|
|
173
173
|
},
|
|
174
174
|
build: CommonConf.build,
|
|
175
175
|
bghitapp: bghitappConf,
|
package/package.json
CHANGED