@bghitcode/bghitapp 1.1.1 → 1.1.3
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/README.md +2 -0
- package/dist/cli.js +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -4,6 +4,8 @@
|
|
|
4
4
|
<h1 align="center">BghitApp</h1>
|
|
5
5
|
<p align="center"><strong>Turn any webpage into a desktop app with one command — by BghitCode. Supports macOS, Windows, and Linux</strong></p>
|
|
6
6
|
<div align="center">
|
|
7
|
+
<a href="https://bghitcode.com" target="_blank">
|
|
8
|
+
<img alt="Website" src="https://img.shields.io/badge/website-bghitcode.com-blue?style=flat-square"></a>
|
|
7
9
|
<a href="https://github.com/BghitCode/bghitapp/releases" target="_blank">
|
|
8
10
|
<img alt="GitHub downloads" src="https://img.shields.io/github/downloads/BghitCode/bghitapp/total.svg?style=flat-square"></a>
|
|
9
11
|
<a href="https://github.com/BghitCode/bghitapp/commits" target="_blank">
|
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.3";
|
|
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"
|
|
@@ -2954,7 +2954,6 @@ async function checkUpdateTips() {
|
|
|
2954
2954
|
}
|
|
2955
2955
|
program.action(async (url, options) => {
|
|
2956
2956
|
try {
|
|
2957
|
-
console.log(logo);
|
|
2958
2957
|
await checkUpdateTips();
|
|
2959
2958
|
if (!url) {
|
|
2960
2959
|
program.help({
|
|
@@ -2962,6 +2961,7 @@ program.action(async (url, options) => {
|
|
|
2962
2961
|
});
|
|
2963
2962
|
return;
|
|
2964
2963
|
}
|
|
2964
|
+
console.log(logo);
|
|
2965
2965
|
log.setDefaultLevel('info');
|
|
2966
2966
|
log.setLevel('info');
|
|
2967
2967
|
if (options.debug) {
|