@bilig/xlsx-formula-recalc 0.124.0 → 0.124.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 +9 -4
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -91,14 +91,17 @@ diagnose it without writing an output file:
|
|
|
91
91
|
npx --package @bilig/xlsx-formula-recalc xlsx-cache-doctor pricing.xlsx --json
|
|
92
92
|
```
|
|
93
93
|
|
|
94
|
-
Inspection imports the workbook, lists formula cells, recomputes
|
|
95
|
-
|
|
96
|
-
the recalculation command
|
|
94
|
+
Inspection imports the workbook, lists formula cells, recomputes every formula
|
|
95
|
+
by default, reports stale cached values, and returns suggested `--read` targets
|
|
96
|
+
for the recalculation command. If you intentionally pass `--inspect-limit 50`,
|
|
97
|
+
the JSON includes the skipped count as `uninspectedFormulaCellCount`.
|
|
97
98
|
|
|
98
99
|
```json
|
|
99
100
|
{
|
|
100
101
|
"formulaCellCount": 12,
|
|
101
102
|
"inspectedFormulaCellCount": 12,
|
|
103
|
+
"uninspectedFormulaCellCount": 0,
|
|
104
|
+
"inspectionLimit": "all",
|
|
102
105
|
"staleCachedFormulaCount": 3,
|
|
103
106
|
"suggestedReads": ["Summary!B7"],
|
|
104
107
|
"formulas": [
|
|
@@ -121,7 +124,9 @@ the recalculation command:
|
|
|
121
124
|
`xlsx-recalc pricing.xlsx --inspect --json`. Use it for issue triage, CI, and
|
|
122
125
|
pull-request checks when the only question is whether committed XLSX files have
|
|
123
126
|
stale cached formula values. The GitHub Action wrapper lives at
|
|
124
|
-
[`actions/xlsx-cache-doctor`](../../actions/xlsx-cache-doctor)
|
|
127
|
+
[`actions/xlsx-cache-doctor`](../../actions/xlsx-cache-doctor), and the runnable
|
|
128
|
+
fixture/workflow example lives at
|
|
129
|
+
[`examples/xlsx-cache-doctor-ci`](../../examples/xlsx-cache-doctor-ci).
|
|
125
130
|
|
|
126
131
|
For an existing workbook:
|
|
127
132
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bilig/xlsx-formula-recalc",
|
|
3
|
-
"version": "0.124.
|
|
3
|
+
"version": "0.124.1",
|
|
4
4
|
"description": "Recalculate XLSX formula values in Node.js after SheetJS, ExcelJS, or xlsx-populate edits 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.124.
|
|
74
|
+
"xlsx-formula-recalc": "0.124.1"
|
|
75
75
|
},
|
|
76
76
|
"engines": {
|
|
77
77
|
"node": ">=22.0.0"
|