@basmilius/utils 2.3.0 → 2.3.1

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.
@@ -4,5 +4,5 @@ export default function<
4
4
  Context = ReturnType<Setup>
5
5
  >(id: Id, setup: Setup): UseStore<Context>;
6
6
  type UseStore<R> = {
7
- (): R
7
+ (): R;
8
8
  };
@@ -1,7 +1,7 @@
1
1
  declare function mulberry32(seed: number): Mulberry32;
2
2
  export default mulberry32;
3
3
  export type Mulberry32 = {
4
- fork(): Mulberry32
5
- next(): number
6
- nextBetween(min: number, max: number): number
4
+ fork(): Mulberry32;
5
+ next(): number;
6
+ nextBetween(min: number, max: number): number;
7
7
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@basmilius/utils",
3
3
  "description": "Various utilities that are used in personal projects.",
4
- "version": "2.3.0",
4
+ "version": "2.3.1",
5
5
  "type": "module",
6
6
  "license": "MIT",
7
7
  "funding": "https://github.com/sponsors/basmilius",
@@ -48,10 +48,10 @@
48
48
  "dependencies": {
49
49
  "@types/luxon": "^3.6.2",
50
50
  "luxon": "^3.6.1",
51
- "pinia": "^3.0.2",
52
- "vue": "^3.5.14"
51
+ "pinia": "^3.0.3",
52
+ "vue": "^3.5.16"
53
53
  },
54
54
  "devDependencies": {
55
- "@basmilius/tools": "2.3.0"
55
+ "@basmilius/tools": "2.3.1"
56
56
  }
57
57
  }