exceljs-formula-recalc 0.107.8 → 0.119.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 +13 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -104,6 +104,19 @@ import { recalculateExceljsBuffer, recalculateExceljsWorkbook } from 'exceljs-fo
|
|
|
104
104
|
|
|
105
105
|
Cell targets must be sheet-qualified A1 references such as `Inputs!B2` or `'Pricing Model'!F12`.
|
|
106
106
|
|
|
107
|
+
## After The Proof
|
|
108
|
+
|
|
109
|
+
If the demo or a reduced ExcelJS workbook gives the fresh formula values your
|
|
110
|
+
service needs, star or bookmark Bilig so the recalculation boundary is easy to
|
|
111
|
+
find later: <https://github.com/proompteng/bilig/stargazers>.
|
|
112
|
+
|
|
113
|
+
Watch releases if this package is close to a production path:
|
|
114
|
+
<https://github.com/proompteng/bilig/subscription>.
|
|
115
|
+
|
|
116
|
+
If a real ExcelJS workbook still blocks adoption, open the smallest fixture
|
|
117
|
+
with the formula, input cells, output cells, and warning output:
|
|
118
|
+
<https://github.com/proompteng/bilig/discussions/new?category=general>.
|
|
119
|
+
|
|
107
120
|
## Scope
|
|
108
121
|
|
|
109
122
|
Use this when a Node service already uses ExcelJS for workbook I/O but needs deterministic formula readback after changing inputs. It is not a full Excel clone: unsupported Excel functions, external workbook links, macros, and volatile functions may need review. Import warnings are returned in `result.warnings`.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "exceljs-formula-recalc",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.119.1",
|
|
4
4
|
"description": "Recalculate ExcelJS XLSX workbook formulas in Node.js without Excel, LibreOffice, or browser automation.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"excel",
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
"build": "pnpm --dir ../.. --filter xlsx-formula-recalc build && rm -rf dist tsconfig.tsbuildinfo && tsc -p tsconfig.json"
|
|
57
57
|
},
|
|
58
58
|
"dependencies": {
|
|
59
|
-
"xlsx-formula-recalc": "0.
|
|
59
|
+
"xlsx-formula-recalc": "0.119.1"
|
|
60
60
|
},
|
|
61
61
|
"devDependencies": {
|
|
62
62
|
"exceljs": "4.4.0"
|