htmlhost-cli 2.1.2 → 2.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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/cli.mjs +4 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "htmlhost-cli",
3
- "version": "2.1.2",
3
+ "version": "2.1.3",
4
4
  "description": "Deploy HTML files from the terminal — htmlhost.co CLI",
5
5
  "type": "module",
6
6
  "bin": {
package/src/cli.mjs CHANGED
@@ -4,7 +4,7 @@
4
4
  import { bold, dim, cyan, err } from "./ui.mjs";
5
5
  import { ApiError } from "./api.mjs";
6
6
 
7
- const VERSION = "2.1.2";
7
+ const VERSION = "2.1.3";
8
8
 
9
9
  const HELP = `
10
10
  ${bold("htmlhost")} ${dim(`v${VERSION}`)} — deploy HTML from the terminal
@@ -43,6 +43,9 @@ const HELP = `
43
43
  ${dim("$")} htmlhost deploy --json ${dim("# JSON output for CI/CD")}
44
44
  ${dim("$")} htmlhost delete old-project --force
45
45
 
46
+ ${bold("Update:")}
47
+ npm update -g htmlhost-cli
48
+
46
49
  ${dim(`Docs: https://htmlhost.co/docs`)}
47
50
  `;
48
51