reverted and sticking with the pnpm lock of main to have a stable 4.1.5

This commit is contained in:
ArnabChatterjee20k
2025-09-17 11:36:17 +05:30
parent 0d43ca0ea2
commit b102b8c74b
3 changed files with 1456 additions and 1207 deletions
+1454 -1205
View File
File diff suppressed because it is too large Load Diff
+1 -1
View File
@@ -232,7 +232,7 @@ function generateSingleValue(
}
case 'polygon': {
let points = Array.from({ length: 5 }, () => [
const points = Array.from({ length: 5 }, () => [
faker.location.longitude(),
faker.location.latitude()
]);
+1 -1
View File
@@ -65,7 +65,7 @@ export async function gzipUpload(files: FileList) {
data: f.buffer
}))
);
const blob = new Blob([tar as Uint8Array<ArrayBuffer>], { type: 'application/gzip' });
const blob = new Blob([tar], { type: 'application/gzip' });
const file = new File([blob], 'deployment.tar.gz', {
type: 'application/gzip'
});