Release and publish
Use this checklist to keep npm latest aligned with repository state.
1) Preflight checks
bash
npm ci
npm run release:checkrelease:check builds the package, runs tests, and validates the npm tarball with npm publish --dry-run.
2) Confirm metadata
package.jsonversion is updated.CHANGELOG.mdhas a dated section for that version.homepage,repository, andkeywordsare accurate.LICENSEexists and matches the packagelicensefield.
3) Publish
bash
npm publish --access publicAfter publishing, verify:
bash
npm view god-kit version dist-tags --json4) Post-publish checks
- npm
latestpoints to the expected version. - README install steps work in a fresh Vue app.
- Docs links (home, getting started, changelog) point to the new release context.