sheetjs-formula-recalc 0.161.0 → 0.164.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/dist/cli.js CHANGED
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env node
2
- import { runXlsxFormulaRecalcCli } from 'xlsx-formula-recalc/cli-api';
3
- process.exitCode = runXlsxFormulaRecalcCli(process.argv.slice(2), {
2
+ import { runXlsxFormulaRecalcCliAsync } from 'xlsx-formula-recalc/cli-api';
3
+ process.exitCode = await runXlsxFormulaRecalcCliAsync(process.argv.slice(2), {
4
4
  commandName: 'sheetjs-recalc',
5
5
  });
6
6
  //# sourceMappingURL=cli.js.map
package/dist/cli.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"cli.js","sourceRoot":"","sources":["../src/cli.ts"],"names":[],"mappings":";AAEA,OAAO,EAAE,uBAAuB,EAAE,MAAM,6BAA6B,CAAA;AAErE,OAAO,CAAC,QAAQ,GAAG,uBAAuB,CAAC,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE;IAChE,WAAW,EAAE,gBAAgB;CAC9B,CAAC,CAAA"}
1
+ {"version":3,"file":"cli.js","sourceRoot":"","sources":["../src/cli.ts"],"names":[],"mappings":";AAEA,OAAO,EAAE,4BAA4B,EAAE,MAAM,6BAA6B,CAAA;AAE1E,OAAO,CAAC,QAAQ,GAAG,MAAM,4BAA4B,CAAC,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE;IAC3E,WAAW,EAAE,gBAAgB;CAC9B,CAAC,CAAA"}
package/dist/index.d.ts CHANGED
@@ -1,2 +1,3 @@
1
- export { WorkPaper, exportXlsx, importXlsx, parseQualifiedA1, parseQualifiedCellTarget, recalculateXlsx as recalculateSheetjsWorkbook, recalculateXlsx, } from 'xlsx-formula-recalc';
1
+ export { recalculateXlsx, recalculateXlsx as recalculateSheetjsWorkbook, recalculateXlsxFileToFile } from 'xlsx-formula-recalc';
2
+ export { WorkPaper, exportXlsx, importXlsx, parseQualifiedA1, parseQualifiedCellTarget } from 'bilig-workpaper/xlsx';
2
3
  export type { XlsxFormulaRecalcCellValue, XlsxFormulaRecalcEdit, XlsxFormulaRecalcOptions, XlsxFormulaRecalcResult, } from 'xlsx-formula-recalc';
package/dist/index.js CHANGED
@@ -1,2 +1,3 @@
1
- export { WorkPaper, exportXlsx, importXlsx, parseQualifiedA1, parseQualifiedCellTarget, recalculateXlsx as recalculateSheetjsWorkbook, recalculateXlsx, } from 'xlsx-formula-recalc';
1
+ export { recalculateXlsx, recalculateXlsx as recalculateSheetjsWorkbook, recalculateXlsxFileToFile } from 'xlsx-formula-recalc';
2
+ export { WorkPaper, exportXlsx, importXlsx, parseQualifiedA1, parseQualifiedCellTarget } from 'bilig-workpaper/xlsx';
2
3
  //# sourceMappingURL=index.js.map
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,SAAS,EACT,UAAU,EACV,UAAU,EACV,gBAAgB,EAChB,wBAAwB,EACxB,eAAe,IAAI,0BAA0B,EAC7C,eAAe,GAChB,MAAM,qBAAqB,CAAA"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,eAAe,IAAI,0BAA0B,EAAE,yBAAyB,EAAE,MAAM,qBAAqB,CAAA;AAC/H,OAAO,EAAE,SAAS,EAAE,UAAU,EAAE,UAAU,EAAE,gBAAgB,EAAE,wBAAwB,EAAE,MAAM,sBAAsB,CAAA"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sheetjs-formula-recalc",
3
- "version": "0.161.0",
3
+ "version": "0.164.0",
4
4
  "description": "Recalculate SheetJS and xlsx workbook formulas in Node.js without Excel, LibreOffice, or browser automation.",
5
5
  "keywords": [
6
6
  "excel",
@@ -62,7 +62,8 @@
62
62
  "smoke": "node ./dist/cli.js --help"
63
63
  },
64
64
  "dependencies": {
65
- "xlsx-formula-recalc": "0.161.0"
65
+ "bilig-workpaper": "0.164.0",
66
+ "xlsx-formula-recalc": "0.164.0"
66
67
  },
67
68
  "engines": {
68
69
  "node": ">=22.0.0"