@augment-vir/core 32.2.1 → 32.2.3

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.
@@ -31,7 +31,9 @@ space) {
31
31
  else if (typeof value === 'bigint') {
32
32
  return Number(value);
33
33
  }
34
- return value;
34
+ else {
35
+ return value;
36
+ }
35
37
  }, space || undefined);
36
38
  return json5String.split(undefinedSentinelStringRegExp).join('undefined');
37
39
  }
@@ -8,9 +8,11 @@
8
8
  export function indent(value, count = 1) {
9
9
  return value
10
10
  .split('\n')
11
- .map((line) => [
12
- ' '.repeat(Math.round(count)),
13
- line,
14
- ].join(''))
11
+ .map((line) => {
12
+ return [
13
+ ' '.repeat(Math.round(count)),
14
+ line,
15
+ ].join('');
16
+ })
15
17
  .join('\n');
16
18
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@augment-vir/core",
3
- "version": "32.2.1",
3
+ "version": "32.2.3",
4
4
  "description": "Core augment-vir augments. Use @augment-vir/common instead.",
5
5
  "homepage": "https://github.com/electrovir/augment-vir",
6
6
  "bugs": {
@@ -28,14 +28,14 @@
28
28
  "test:update": "npm test update"
29
29
  },
30
30
  "dependencies": {
31
- "@date-vir/duration": "^8.6.1",
31
+ "@date-vir/duration": "^9.0.0",
32
32
  "browser-or-node": "^3.0.0",
33
33
  "diff": "^9.0.0",
34
34
  "json5": "^2.2.3"
35
35
  },
36
36
  "devDependencies": {
37
- "@types/node": "^26.0.1",
38
- "c8": "^11.0.0",
37
+ "@types/node": "^26.2.0",
38
+ "c8": "^12.0.0",
39
39
  "istanbul-smart-text-reporter": "^1.1.5",
40
40
  "typescript": "^6.0.3"
41
41
  },