Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## Unreleased

- Alpha release readiness checks and documentation.

## v0.1.0-alpha.1 - 2025-01-30

- Initial repository scaffold.
Expand Down
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -127,3 +127,14 @@ This will create a tarball (e.g., `localhostlabs-create-qvac-app-0.1.0-alpha.1.t
containing only the files listed in the `files` field of `package.json`.

CI runs the same health checks on pull requests and pushes to `main`.

## Alpha release readiness

- [x] Package version is `0.1.0-alpha.1` (alpha).
- [x] CHANGELOG includes release notes for `v0.1.0-alpha.1`.
- [x] `npm pack` builds successfully: run `pnpm build && npm pack`.
- [x] Metadata checks passing (package name, bin, main, files fields).

**Note:** The `"private": true` field prevents accidental publishing. When it is
time to publish, `--access public` must be used and the `private` field should
be removed or set to `false`.
Loading