@milaboratories/pl-drivers 1.2.24 → 1.2.25
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.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +5 -5
- package/src/drivers/download_and_logs_blob.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@milaboratories/pl-drivers",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.25",
|
|
4
4
|
"description": "Drivers and a low-level clients for log streaming, downloading and uploading files from and to pl",
|
|
5
5
|
"types": "./dist/index.d.ts",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -26,10 +26,10 @@
|
|
|
26
26
|
"tar-fs": "^3.0.6",
|
|
27
27
|
"undici": "^6.19.8",
|
|
28
28
|
"zod": "^3.23.8",
|
|
29
|
-
"@milaboratories/ts-helpers": "^1.0.
|
|
30
|
-
"@milaboratories/pl-client": "^2.4.
|
|
31
|
-
"@milaboratories/computable": "^2.1.
|
|
32
|
-
"@milaboratories/pl-tree": "^1.3.
|
|
29
|
+
"@milaboratories/ts-helpers": "^1.0.28",
|
|
30
|
+
"@milaboratories/pl-client": "^2.4.17",
|
|
31
|
+
"@milaboratories/computable": "^2.1.8",
|
|
32
|
+
"@milaboratories/pl-tree": "^1.3.14",
|
|
33
33
|
"@milaboratories/pl-model-common": "^1.3.13"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
@@ -662,7 +662,7 @@ export class Download {
|
|
|
662
662
|
);
|
|
663
663
|
|
|
664
664
|
if (!(await fileOrDirExists(path.dirname(this.path))))
|
|
665
|
-
fsp.mkdir(path.dirname(this.path), { recursive: true });
|
|
665
|
+
await fsp.mkdir(path.dirname(this.path), { recursive: true });
|
|
666
666
|
|
|
667
667
|
// check in case we already have a file by this resource id
|
|
668
668
|
// in the directory. It can happen when we forgot to call removeAll
|