@hamedb89/localghost 0.2.0 → 0.3.0

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 CHANGED
@@ -640,6 +640,7 @@ import { localGhostPlugin } from "@hamedb89/localghost/vite";
640
640
  - Preview the exact Pages artifact locally with `npm run site:serve`, then open `http://127.0.0.1:4173/`.
641
641
  - npm publish is guarded by `prepublishOnly` and the release workflow publishes with npm provenance.
642
642
  - To release the CLI, run `localghost release patch`, `localghost release minor`, or `localghost release major`. The command dispatches the **Release** workflow from `main`; it synchronizes version metadata, verifies the package and runtime matrix, commits and tags the bump, publishes npm, and creates a GitHub Release with generated notes. GitHub CLI must be installed and authenticated.
643
+ - From this repository, `./bin/ghost release minor` (or the shorter `./bin/c release minor`) pushes `main` and dispatches the same guarded GitHub release workflow. Use `./bin/ghost check` for the release verification locally, `./bin/ghost release status` to inspect recent runs, or `./bin/ghost release retry v0.2.0` to retry publishing an existing tag.
643
644
  - Runtime dependencies are intentionally small: `commander` and `execa`. Vite is an optional peer dependency.
644
645
  - No postinstall scripts, hidden Homebrew installs, surprise browser tabs, or broad hosts-file rewrites.
645
646
  - Update checks are best-effort, cached for 24 hours, and can be disabled with `LOCALGHOST_NO_UPDATE_CHECK=1` or `--no-update-check`.
package/dist/cli.js CHANGED
@@ -2068,7 +2068,7 @@ import { existsSync as existsSync7, mkdirSync as mkdirSync3, readFileSync as rea
2068
2068
  import { homedir as homedir3 } from "os";
2069
2069
  import { dirname as dirname4, join as join10 } from "path";
2070
2070
  var LOCALGHOST_PACKAGE_NAME = "@hamedb89/localghost";
2071
- var LOCALGHOST_VERSION = "0.2.0";
2071
+ var LOCALGHOST_VERSION = "0.3.0";
2072
2072
  var UPDATE_CHECK_CACHE_TTL_MS = 24 * 60 * 60 * 1e3;
2073
2073
  var UPDATE_CHECK_NOTIFY_TTL_MS = 24 * 60 * 60 * 1e3;
2074
2074
  var UPDATE_CHECK_TIMEOUT_MS = 900;