@bilig/xlsx-formula-recalc 0.130.0 → 0.130.1
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 +17 -7
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -4,17 +4,14 @@ Diagnose stale cached XLSX formula values in Node and CI, then recalculate the
|
|
|
4
4
|
cells your service actually reads without Excel, LibreOffice, or browser
|
|
5
5
|
automation.
|
|
6
6
|
|
|
7
|
-
This is
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
7
|
+
This package is for the high-friction Node XLSX workflow: a file library edits
|
|
8
|
+
workbook bytes, but the formula cells still carry old cached values. Start with
|
|
9
|
+
the cache doctor when you do not know which cells are stale. Use recalculation
|
|
10
|
+
after the detector points at the cells that matter.
|
|
11
11
|
|
|
12
12
|
It fits `xlsx-populate`, SheetJS / `xlsx`, template-generation, GitHub Actions,
|
|
13
13
|
and backend file pipelines where stale readback is worse than a hard failure.
|
|
14
14
|
|
|
15
|
-
The unscoped `xlsx-formula-recalc` package remains published as a compatibility
|
|
16
|
-
and search alias.
|
|
17
|
-
|
|
18
15
|
## Try The Cache Doctor First
|
|
19
16
|
|
|
20
17
|
Run the no-project demo:
|
|
@@ -57,6 +54,15 @@ Expected shape:
|
|
|
57
54
|
The JSON is meant for CI and agents. It does not include star, release-watch, or
|
|
58
55
|
discussion links.
|
|
59
56
|
|
|
57
|
+
If a coding agent needs to edit workbook state instead of only inspecting XLSX
|
|
58
|
+
bytes, do not automate Excel or a browser grid. Run the headless proof:
|
|
59
|
+
|
|
60
|
+
```sh
|
|
61
|
+
npm exec --package @bilig/workpaper@latest -- bilig-mcp-challenge --json
|
|
62
|
+
```
|
|
63
|
+
|
|
64
|
+
Then use the [agent MCP evaluator](https://proompteng.github.io/bilig/eval-agent-mcp.html).
|
|
65
|
+
|
|
60
66
|
Use `cacheStatusSummary` and per-formula `cacheStatus` to separate confirmed
|
|
61
67
|
stale caches from missing cached values or formulas without a comparable
|
|
62
68
|
recalculated value.
|
|
@@ -322,3 +328,7 @@ external workbook links, macros, and volatile functions may need review. Import
|
|
|
322
328
|
warnings are returned in `result.warnings`.
|
|
323
329
|
|
|
324
330
|
Full docs: <https://proompteng.github.io/bilig/xlsx-formula-recalculation-node.html>
|
|
331
|
+
|
|
332
|
+
Compatibility note: the unscoped `xlsx-formula-recalc` package remains
|
|
333
|
+
published as a search and migration alias. Use `@bilig/xlsx-formula-recalc` in
|
|
334
|
+
new projects.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bilig/xlsx-formula-recalc",
|
|
3
|
-
"version": "0.130.
|
|
3
|
+
"version": "0.130.1",
|
|
4
4
|
"description": "Diagnose stale cached XLSX formula values and recalculate XLSX formulas in Node.js without Excel, LibreOffice, or browser automation.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"bilig",
|
|
@@ -71,7 +71,7 @@
|
|
|
71
71
|
"smoke": "node ./dist/cli.js --help"
|
|
72
72
|
},
|
|
73
73
|
"dependencies": {
|
|
74
|
-
"xlsx-formula-recalc": "0.130.
|
|
74
|
+
"xlsx-formula-recalc": "0.130.1"
|
|
75
75
|
},
|
|
76
76
|
"engines": {
|
|
77
77
|
"node": ">=22.0.0"
|