@guillaume-docquier/tools-ts 7.5.0 → 7.5.2

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 Measurement } from "./Measurement.js";
1
+ import type { Measurement } from "./Measurement.js";
2
2
  /**
3
3
  * Represents the possible units to define time.
4
4
  */
package/dist/rng/Rng.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import type { Range } from "../Range.js";
2
- import { type Generator } from "./Generator.js";
2
+ import type { Generator } from "./Generator.js";
3
3
  export type RngState<TGeneratorState> = {
4
4
  generatorState: TGeneratorState;
5
5
  spareNormal: number | null;
@@ -1,4 +1,4 @@
1
- import { type Generator } from "./Generator.js";
1
+ import type { Generator } from "./Generator.js";
2
2
  /**
3
3
  * Creates a deterministic pseudo-random number generator based on a 32-bit integer seed using the mulberry32 algorithm.
4
4
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@guillaume-docquier/tools-ts",
3
- "version": "7.5.0",
3
+ "version": "7.5.2",
4
4
  "description": "My personal collection of typescript tools",
5
5
  "homepage": "https://github.com/Guillaume-Docquier/tools-ts",
6
6
  "license": "MIT",
@@ -16,7 +16,8 @@
16
16
  "exports": {
17
17
  ".": {
18
18
  "types": "./dist/entry.tools-ts.d.ts",
19
- "import": "./dist/entry.tools-ts.js"
19
+ "import": "./dist/entry.tools-ts.js",
20
+ "require": "./dist/entry.tools-ts.js"
20
21
  }
21
22
  },
22
23
  "publishConfig": {
@@ -29,7 +30,7 @@
29
30
  },
30
31
  "devDependencies": {
31
32
  "@guillaume-docquier/oxfmt": "^1.0.6",
32
- "@guillaume-docquier/oxlint": "^1.7.3",
33
+ "@guillaume-docquier/oxlint": "^1.8.0",
33
34
  "@semantic-release/commit-analyzer": "^13.0.1",
34
35
  "@semantic-release/exec": "^7.1.0",
35
36
  "@semantic-release/github": "^12.0.9",