We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a85c801 commit a46ff68Copy full SHA for a46ff68
package.json
@@ -1,7 +1,7 @@
1
{
2
"name": "@tsmodule/spinners",
3
"license": "MIT",
4
- "version": "0.0.4",
+ "version": "0.0.5",
5
"type": "module",
6
"types": "dist/index.d.ts",
7
"exports": {
src/index.ts
@@ -105,7 +105,7 @@ export const spinners = async (
105
106
if (failed > 0) {
107
// throw `${failed} spinner(s) failed.`;
108
- throw { ...spinnerErrors };
+ throw Object.fromEntries(spinnerErrors);
109
}
110
111
return null;
0 commit comments