exceljs-formula-recalc 0.157.0 → 0.159.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.
Files changed (3) hide show
  1. package/README.md +5 -0
  2. package/SKILL.md +2 -1
  3. package/package.json +2 -2
package/README.md CHANGED
@@ -30,6 +30,11 @@ For a cross-library proof, run
30
30
  It edits the same workbook through SheetJS/`xlsx`, `xlsx-populate`, and
31
31
  ExcelJS, then verifies that Bilig refreshes the stale formula result.
32
32
 
33
+ If the workflow might belong at the generic XLSX, SheetJS, template, CI,
34
+ WorkPaper, or agent boundary instead, use the
35
+ [stale formula readback chooser](https://proompteng.github.io/bilig/stale-formula-readback-chooser.html)
36
+ before adding an ExcelJS-specific bridge.
37
+
33
38
  ## Install
34
39
 
35
40
  ```sh
package/SKILL.md CHANGED
@@ -22,7 +22,8 @@ ExcelJS and needs fresh formula output values after changing cells.
22
22
  npx --package exceljs-formula-recalc exceljs-recalc --demo --json
23
23
  ```
24
24
 
25
- The demo should print `verified: true` and a `Summary!B2` value of `72000`.
25
+ The demo should print `commandSucceeded: true`, `recalculationCompleted: true`,
26
+ `expectedValueMatched: true`, and a `Summary!B2` value of `72000`.
26
27
 
27
28
  ## Real Workbook
28
29
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "exceljs-formula-recalc",
3
- "version": "0.157.0",
3
+ "version": "0.159.0",
4
4
  "description": "Recalculate ExcelJS XLSX workbook formulas in Node.js without Excel, LibreOffice, or browser automation.",
5
5
  "keywords": [
6
6
  "excel",
@@ -57,7 +57,7 @@
57
57
  "build": "pnpm --dir ../.. --filter xlsx-formula-recalc build && rm -rf dist tsconfig.tsbuildinfo && tsc -p tsconfig.json"
58
58
  },
59
59
  "dependencies": {
60
- "xlsx-formula-recalc": "0.157.0"
60
+ "xlsx-formula-recalc": "0.159.0"
61
61
  },
62
62
  "devDependencies": {
63
63
  "exceljs": "4.4.0"