@bilig/xlsx-formula-recalc 0.121.0 → 0.123.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/README.md +18 -18
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -59,8 +59,7 @@ npx --package @bilig/xlsx-formula-recalc xlsx-recalc --demo --json
|
|
|
59
59
|
|
|
60
60
|
That command creates a tiny workbook, changes `Inputs!B2` and `Inputs!B3`,
|
|
61
61
|
recalculates `Summary!B2`, writes `bilig-formula-recalc-demo.xlsx`, and prints
|
|
62
|
-
a proof object with
|
|
63
|
-
actions:
|
|
62
|
+
a proof object with explicit recalculation fields and the recalculated value:
|
|
64
63
|
|
|
65
64
|
```json
|
|
66
65
|
{
|
|
@@ -70,22 +69,20 @@ actions:
|
|
|
70
69
|
}
|
|
71
70
|
},
|
|
72
71
|
"warnings": [],
|
|
73
|
-
"
|
|
74
|
-
"
|
|
75
|
-
"
|
|
76
|
-
"
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
"watchReleases": "https://github.com/proompteng/bilig/subscription",
|
|
81
|
-
"ifBlocked": "If this is close but blocked by a workbook edge case, open an adoption blocker with a reduced fixture.",
|
|
82
|
-
"adoptionBlocker": "https://github.com/proompteng/bilig/discussions/new?category=general"
|
|
83
|
-
}
|
|
72
|
+
"commandSucceeded": true,
|
|
73
|
+
"recalculationCompleted": true,
|
|
74
|
+
"excelParity": "not_proven",
|
|
75
|
+
"expectedReadback": {
|
|
76
|
+
"Summary!B2": 72000
|
|
77
|
+
},
|
|
78
|
+
"expectedValueMatched": true
|
|
84
79
|
}
|
|
85
80
|
```
|
|
86
81
|
|
|
87
|
-
Keep the proof first
|
|
88
|
-
|
|
82
|
+
Keep the proof first. The JSON is meant for CI and agents, so it does not carry
|
|
83
|
+
star, release-watch, or discussion links. Use the links in the README or docs
|
|
84
|
+
only after the recalculated value and warnings match the workflow you are
|
|
85
|
+
evaluating.
|
|
89
86
|
|
|
90
87
|
If you have a real workbook but do not yet know which formula cells matter,
|
|
91
88
|
inspect it without writing an output file:
|
|
@@ -113,7 +110,10 @@ the recalculation command:
|
|
|
113
110
|
"staleCachedValue": true
|
|
114
111
|
}
|
|
115
112
|
],
|
|
116
|
-
"
|
|
113
|
+
"commandSucceeded": true,
|
|
114
|
+
"inspectionCompleted": true,
|
|
115
|
+
"recalculationCompleted": true,
|
|
116
|
+
"excelParity": "not_proven",
|
|
117
117
|
"nextStep": {
|
|
118
118
|
"command": "xlsx-recalc pricing.xlsx --read 'Summary!B7' --json"
|
|
119
119
|
}
|
|
@@ -224,8 +224,8 @@ from `@bilig/workpaper`.
|
|
|
224
224
|
|
|
225
225
|
## After The Proof
|
|
226
226
|
|
|
227
|
-
If
|
|
228
|
-
the repo so you can find it again:
|
|
227
|
+
If the recalculation proof matches the Node/XLSX workflow you need, star or
|
|
228
|
+
bookmark the repo so you can find it again:
|
|
229
229
|
<https://github.com/proompteng/bilig/stargazers>.
|
|
230
230
|
|
|
231
231
|
Watch releases if the package is close to a production path:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bilig/xlsx-formula-recalc",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.123.0",
|
|
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",
|
|
@@ -69,7 +69,7 @@
|
|
|
69
69
|
"smoke": "node ./dist/cli.js --help"
|
|
70
70
|
},
|
|
71
71
|
"dependencies": {
|
|
72
|
-
"xlsx-formula-recalc": "0.
|
|
72
|
+
"xlsx-formula-recalc": "0.123.0"
|
|
73
73
|
},
|
|
74
74
|
"engines": {
|
|
75
75
|
"node": ">=22.0.0"
|