@beff/cli 0.0.131 → 0.0.132
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/CHANGELOG.md +6 -0
- package/dist-cli/cli.js +16 -2
- package/package.json +1 -1
- package/pkg/beff_wasm_bg.wasm +0 -0
package/CHANGELOG.md
CHANGED
package/dist-cli/cli.js
CHANGED
|
@@ -48530,8 +48530,22 @@ var Bundler = class {
|
|
|
48530
48530
|
};
|
|
48531
48531
|
function serializeSettings(settings) {
|
|
48532
48532
|
return {
|
|
48533
|
-
string_formats:
|
|
48534
|
-
|
|
48533
|
+
string_formats: Object.fromEntries(
|
|
48534
|
+
(settings.stringFormats ?? []).map((it) => [
|
|
48535
|
+
it.name,
|
|
48536
|
+
{
|
|
48537
|
+
error_message: it.errorMessage
|
|
48538
|
+
}
|
|
48539
|
+
])
|
|
48540
|
+
) ?? {},
|
|
48541
|
+
number_formats: Object.fromEntries(
|
|
48542
|
+
(settings.numberFormats ?? []).map((it) => [
|
|
48543
|
+
it.name,
|
|
48544
|
+
{
|
|
48545
|
+
error_message: it.errorMessage
|
|
48546
|
+
}
|
|
48547
|
+
])
|
|
48548
|
+
) ?? {}
|
|
48535
48549
|
};
|
|
48536
48550
|
}
|
|
48537
48551
|
|
package/package.json
CHANGED
package/pkg/beff_wasm_bg.wasm
CHANGED
|
Binary file
|