freestyle-sandboxes 0.0.72 → 0.0.73
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.
- package/dist/index.cjs +3 -1
- package/dist/index.mjs +3 -1
- package/package.json +1 -1
- package/src/index.ts +3 -1
package/dist/index.cjs
CHANGED
|
@@ -1013,7 +1013,9 @@ ${response.error.message}`);
|
|
|
1013
1013
|
}
|
|
1014
1014
|
});
|
|
1015
1015
|
if (response2.error) {
|
|
1016
|
-
throw new Error(
|
|
1016
|
+
throw new Error(
|
|
1017
|
+
`Failed to write file: ${JSON.stringify(response2.error)}`
|
|
1018
|
+
);
|
|
1017
1019
|
}
|
|
1018
1020
|
}
|
|
1019
1021
|
},
|
package/dist/index.mjs
CHANGED
|
@@ -1011,7 +1011,9 @@ ${response.error.message}`);
|
|
|
1011
1011
|
}
|
|
1012
1012
|
});
|
|
1013
1013
|
if (response2.error) {
|
|
1014
|
-
throw new Error(
|
|
1014
|
+
throw new Error(
|
|
1015
|
+
`Failed to write file: ${JSON.stringify(response2.error)}`
|
|
1016
|
+
);
|
|
1015
1017
|
}
|
|
1016
1018
|
}
|
|
1017
1019
|
},
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -1097,7 +1097,9 @@ export class FreestyleSandboxes {
|
|
|
1097
1097
|
});
|
|
1098
1098
|
|
|
1099
1099
|
if (response.error) {
|
|
1100
|
-
throw new Error(
|
|
1100
|
+
throw new Error(
|
|
1101
|
+
`Failed to write file: ${JSON.stringify(response.error)}`
|
|
1102
|
+
);
|
|
1101
1103
|
}
|
|
1102
1104
|
},
|
|
1103
1105
|
},
|