open-local-audit 0.51.0 → 0.52.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/CHANGELOG.md +6 -0
- package/README.md +3 -1
- package/package.json +3 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to Open Local Audit will be documented here.
|
|
4
4
|
|
|
5
|
+
## v0.52.0 - 2026-07-04
|
|
6
|
+
|
|
7
|
+
- Added a fresh consumer install audit to `npm run release-check`.
|
|
8
|
+
- Verified release tarballs install as the current package version before publish.
|
|
9
|
+
- Kept the release gate local and dependency-free by using npm and Node standard library only.
|
|
10
|
+
|
|
5
11
|
## v0.51.0 - 2026-07-03
|
|
6
12
|
|
|
7
13
|
- Added `review --stale-before YYYY-MM-DD` for read-only stale review counts in local review CSV summaries.
|
package/README.md
CHANGED
|
@@ -48,6 +48,8 @@ npm run build
|
|
|
48
48
|
npm run release-check
|
|
49
49
|
```
|
|
50
50
|
|
|
51
|
+
`release-check` also packs the package, installs it into a temporary consumer project, verifies the published package version can be resolved, and runs `npm audit --omit=dev` in that consumer project.
|
|
52
|
+
|
|
51
53
|
Run the CLI locally:
|
|
52
54
|
|
|
53
55
|
```bash
|
|
@@ -406,4 +408,4 @@ Example report artifacts are available under [`examples/reports`](./examples/rep
|
|
|
406
408
|
|
|
407
409
|
## Releases
|
|
408
410
|
|
|
409
|
-
Open Local Audit is published under the MIT license on GitHub and npm. Release history is available in [CHANGELOG.md](./CHANGELOG.md) and GitHub Releases. Every release runs lint, tests, build, audit,
|
|
411
|
+
Open Local Audit is published under the MIT license on GitHub and npm. Release history is available in [CHANGELOG.md](./CHANGELOG.md) and GitHub Releases. Every release runs lint, tests, build, audit, package-content checks, and a fresh consumer install audit through GitHub Actions.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "open-local-audit",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.52.0",
|
|
4
4
|
"description": "Open-source website and local presence auditor for small businesses.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -18,8 +18,9 @@
|
|
|
18
18
|
],
|
|
19
19
|
"scripts": {
|
|
20
20
|
"build": "tsc -p tsconfig.build.json",
|
|
21
|
+
"fresh-install-check": "node scripts/fresh-install-check.mjs",
|
|
21
22
|
"lint": "tsc -p tsconfig.json --noEmit",
|
|
22
|
-
"release-check": "npm run lint && npm test && npm run build && npm audit && npm pack --dry-run",
|
|
23
|
+
"release-check": "npm run lint && npm test && npm run build && npm audit && npm pack --dry-run && npm run fresh-install-check",
|
|
23
24
|
"test": "vitest run",
|
|
24
25
|
"start": "tsx src/cli.ts"
|
|
25
26
|
},
|