@augment-vir/core 31.14.0 → 31.15.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.
@@ -1,4 +1,4 @@
1
- import type { EnumBaseType } from './enum-type.js';
1
+ import { type EnumBaseType } from './enum-type.js';
2
2
  /**
3
3
  * Gets all values within an enum as an array.
4
4
  *
@@ -1,4 +1,4 @@
1
- import { Constructor } from 'type-fest';
1
+ import { type Constructor } from 'type-fest';
2
2
  /**
3
3
  * Either returns the input if it's already an Error instance or converts it into an Error instance.
4
4
  *
@@ -1,5 +1,5 @@
1
- import type { ArrayElement } from '../array/array.js';
2
- import type { ExtractKeysWithMatchingValues } from '../object/object-keys.js';
1
+ import { type ArrayElement } from '../array/array.js';
2
+ import { type ExtractKeysWithMatchingValues } from '../object/object-keys.js';
3
3
  /**
4
4
  * All standardized HTTP status codes.
5
5
  *
@@ -1,4 +1,4 @@
1
- import { Jsonify, Primitive } from 'type-fest';
1
+ import { type Jsonify, type Primitive } from 'type-fest';
2
2
  /**
3
3
  * These are similar in purpose, name, and structure to type-fest's JsonValue types but these are
4
4
  * more permissive. The goal here is to allow any types that do not get serialized into just empty
@@ -1,4 +1,4 @@
1
- import type { CompleteRequire } from './required-keys.js';
1
+ import { type CompleteRequire } from './required-keys.js';
2
2
  /**
3
3
  * Gets the value types of an object with all parts of that object required.
4
4
  *
@@ -1,4 +1,4 @@
1
- import { Except, Simplify } from 'type-fest';
1
+ import { type Except, type Simplify } from 'type-fest';
2
2
  export type { SetRequired } from 'type-fest';
3
3
  /**
4
4
  * Same as the Required<> built-in type helper but this requires that each property be present and
@@ -1,4 +1,4 @@
1
- import { AnyObject } from './object/generic-object-type.js';
1
+ import { type AnyObject } from './object/generic-object-type.js';
2
2
  /**
3
3
  * Allow `T` to be partial or have `null` or `undefined` as the value for any of its keys.
4
4
  *
@@ -1,4 +1,4 @@
1
- import { AnyDuration } from '@date-vir/duration';
1
+ import { type AnyDuration } from '@date-vir/duration';
2
2
  /**
3
3
  * An async pause for the given duration.
4
4
  *
@@ -1,4 +1,4 @@
1
- import type { ArrayElement } from '../array/array.js';
1
+ import { type ArrayElement } from '../array/array.js';
2
2
  /**
3
3
  * All characters that are considered punctuation.
4
4
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@augment-vir/core",
3
- "version": "31.14.0",
3
+ "version": "31.15.0",
4
4
  "description": "Core augment-vir augments. Use @augment-vir/common instead.",
5
5
  "homepage": "https://github.com/electrovir/augment-vir",
6
6
  "bugs": {
@@ -34,7 +34,7 @@
34
34
  "type-fest": "^4.40.0"
35
35
  },
36
36
  "devDependencies": {
37
- "@types/node": "^22.14.1",
37
+ "@types/node": "^22.15.0",
38
38
  "c8": "^10.1.3",
39
39
  "istanbul-smart-text-reporter": "^1.1.5",
40
40
  "typescript": "^5.8.3"