@bilig/xlsx-formula-recalc 0.124.1 → 0.127.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 (2) hide show
  1. package/README.md +14 -0
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -128,6 +128,20 @@ stale cached formula values. The GitHub Action wrapper lives at
128
128
  fixture/workflow example lives at
129
129
  [`examples/xlsx-cache-doctor-ci`](../../examples/xlsx-cache-doctor-ci).
130
130
 
131
+ To create the GitHub Actions workflow from npm:
132
+
133
+ ```sh
134
+ mkdir -p .github/workflows
135
+ npx --package @bilig/xlsx-formula-recalc xlsx-cache-doctor --print-github-action "**/*.xlsx" \
136
+ > .github/workflows/xlsx-cache-doctor.yml
137
+ ```
138
+
139
+ The generated workflow is read-only and report-only by default. Add
140
+ `--fail-on-stale true` when stale formula caches should block pull requests.
141
+ Use `--inspect-limit`, `--json-output`, and `--markdown-output` when your first
142
+ run should sample formulas or write the JSON and Markdown reports somewhere
143
+ specific.
144
+
131
145
  For an existing workbook:
132
146
 
133
147
  ```sh
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bilig/xlsx-formula-recalc",
3
- "version": "0.124.1",
3
+ "version": "0.127.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",
@@ -71,7 +71,7 @@
71
71
  "smoke": "node ./dist/cli.js --help"
72
72
  },
73
73
  "dependencies": {
74
- "xlsx-formula-recalc": "0.124.1"
74
+ "xlsx-formula-recalc": "0.127.0"
75
75
  },
76
76
  "engines": {
77
77
  "node": ">=22.0.0"