dicebear 9.2.3 → 9.2.4

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,7 @@ export function addStyleCommand(cli, name, style) {
31
31
  const json = validated.json;
32
32
  outputStyleLicenseBanner(name, style);
33
33
  bar.start(count, 0);
34
- const queue = new PQueue({ concurrency: os.cpus().length });
34
+ const queue = new PQueue({ concurrency: os.cpus().length || 1 });
35
35
  queue.on('next', () => {
36
36
  bar.update(count - queue.size - queue.pending);
37
37
  });
@@ -1 +1 @@
1
- export declare function writeFile(filePath: string, content: string | ArrayBuffer): Promise<void>;
1
+ export declare function writeFile(filePath: string, content: string | ArrayBufferLike): Promise<void>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dicebear",
3
- "version": "9.2.3",
3
+ "version": "9.2.4",
4
4
  "private": false,
5
5
  "description": "CLI for DiceBear - An avatar library for designers and developers",
6
6
  "homepage": "https://github.com/dicebear/dicebear",
@@ -25,9 +25,9 @@
25
25
  "prepublishOnly": "npm run build"
26
26
  },
27
27
  "dependencies": {
28
- "@dicebear/collection": "9.2.3",
29
- "@dicebear/converter": "9.2.3",
30
- "@dicebear/core": "9.2.3",
28
+ "@dicebear/collection": "9.2.4",
29
+ "@dicebear/converter": "9.2.4",
30
+ "@dicebear/core": "9.2.4",
31
31
  "ajv": "^8.17.1",
32
32
  "chalk": "^5.4.1",
33
33
  "chalk-template": "^1.1.0",
@@ -49,5 +49,5 @@
49
49
  "engines": {
50
50
  "node": ">=18.0.0"
51
51
  },
52
- "gitHead": "8cfdc4d029c9de6a82fef4e27ed67b5e2cd14a30"
52
+ "gitHead": "b19e1a8e417d6cdaffbc46ca6dee3522bb266b29"
53
53
  }