formulab 0.27.1 → 0.27.2
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 +11 -0
- package/package.json +3 -2
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,17 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [0.27.2] - 2026-08-06
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
|
|
12
|
+
- Repository tooling only, no change to the published API. Added an audit that lists
|
|
13
|
+
constants which decide a verdict without saying where they come from, sorting them into
|
|
14
|
+
sourced, explicitly-unsourced, and silent. It reports rather than fails: it follows data
|
|
15
|
+
flow one hop, so a table reached through a local and compared through a field is not
|
|
16
|
+
seen, and a check that under-reports must not gate. Run it with
|
|
17
|
+
`npm run audit:constant-provenance`.
|
|
18
|
+
|
|
8
19
|
## [0.27.1] - 2026-08-06
|
|
9
20
|
|
|
10
21
|
### Fixed
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "formulab",
|
|
3
|
-
"version": "0.27.
|
|
3
|
+
"version": "0.27.2",
|
|
4
4
|
"description": "Manufacturing & Engineering calculation formulas library - 211 industrial calculations across 15 domains for OEE, Cpk, SPC, FMEA, Nelson Rules, metal weight, CNC machining, GD&T, battery, environmental, pipe flow, logistics, IE time study, and more",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -172,6 +172,7 @@
|
|
|
172
172
|
"test:coverage": "vitest run --coverage",
|
|
173
173
|
"test:watch": "vitest",
|
|
174
174
|
"docs:api": "typedoc",
|
|
175
|
-
"clean": "node -e \"require('fs').rmSync('dist',{recursive:true,force:true})\""
|
|
175
|
+
"clean": "node -e \"require('fs').rmSync('dist',{recursive:true,force:true})\"",
|
|
176
|
+
"audit:constant-provenance": "node scripts/audit-constant-provenance.mjs src"
|
|
176
177
|
}
|
|
177
178
|
}
|