lingo.dev 0.77.5 → 0.77.6
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/build/cli.cjs +2 -2
- package/build/cli.cjs.map +1 -1
- package/build/cli.mjs +2 -2
- package/build/cli.mjs.map +1 -1
- package/package.json +1 -1
package/build/cli.cjs
CHANGED
|
@@ -1776,7 +1776,7 @@ var _datefns = require('date-fns');
|
|
|
1776
1776
|
function createUnlocalizableLoader(isCacheRestore = false) {
|
|
1777
1777
|
const rules = {
|
|
1778
1778
|
isEmpty: (v) => _lodash2.default.isEmpty(v),
|
|
1779
|
-
isNumber: (v) =>
|
|
1779
|
+
isNumber: (v) => typeof v === "number" || /^[0-9]+$/.test(v),
|
|
1780
1780
|
isBoolean: (v) => _lodash2.default.isBoolean(v),
|
|
1781
1781
|
isIsoDate: (v) => _lodash2.default.isString(v) && _isIsoDate(v),
|
|
1782
1782
|
isSystemId: (v) => _lodash2.default.isString(v) && _isSystemId(v),
|
|
@@ -3752,7 +3752,7 @@ var mcp_default = new (0, _interactivecommander.Command)().command("mcp").descri
|
|
|
3752
3752
|
// package.json
|
|
3753
3753
|
var package_default = {
|
|
3754
3754
|
name: "lingo.dev",
|
|
3755
|
-
version: "0.77.
|
|
3755
|
+
version: "0.77.6",
|
|
3756
3756
|
description: "Lingo.dev CLI",
|
|
3757
3757
|
private: false,
|
|
3758
3758
|
publishConfig: {
|