utilium 1.0.2 → 1.0.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.
@@ -1,6 +1,5 @@
1
1
  import type { ClassLike } from '../types.js';
2
2
  import type * as primitive from './primitives.js';
3
- import './struct-symbols.js';
4
3
  export interface MemberInit {
5
4
  name: string;
6
5
  type: string | ClassLike;
@@ -1,4 +1,3 @@
1
- import './struct-symbols.js';
2
1
  // @ts-expect-error 2322
3
2
  Symbol.struct_init ||= Symbol('struct_init');
4
3
  // @ts-expect-error 2322
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "utilium",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "Typescript utilities",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -21,6 +21,7 @@
21
21
  "format:check": "prettier --check .",
22
22
  "format": "prettier --write .",
23
23
  "lint": "tsc --noEmit && eslint src",
24
+ "test": "tsx --test",
24
25
  "build": "tsc -p tsconfig.json",
25
26
  "build:docs": "typedoc",
26
27
  "prepublishOnly": "npm run build"
@@ -43,6 +44,7 @@
43
44
  "eslint": "^9.12.0",
44
45
  "globals": "^15.10.0",
45
46
  "prettier": "^3.2.5",
47
+ "tsx": "^4.19.1",
46
48
  "typedoc": "^0.26.6",
47
49
  "typescript": "^5.5.4",
48
50
  "typescript-eslint": "^8.8.0"
@@ -1,6 +1,5 @@
1
1
  import type { ClassLike } from '../types.js';
2
2
  import type * as primitive from './primitives.js';
3
- import './struct-symbols.js';
4
3
 
5
4
  // @ts-expect-error 2322
6
5
  Symbol.struct_init ||= Symbol('struct_init');