@arkstack/filesystem 0.12.4 → 0.12.6
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/README.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# @arkstack/filesystem
|
|
2
2
|
|
|
3
|
+
[](https://www.npmjs.com/package/@arkstack/filesystem)
|
|
4
|
+
|
|
3
5
|
Filesystem module for Arkstack, providing shared file storage and filesystem utitlities for the framework.
|
|
4
6
|
|
|
5
7
|
## Custom Drivers
|
package/dist/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { n as FtpDriver, t as Storage } from "./src-
|
|
1
|
+
import { n as FtpDriver, t as Storage } from "./src-Cj4wZApu.js";
|
|
2
2
|
export { FtpDriver, Storage };
|
|
@@ -251,7 +251,7 @@ var Driver = class Driver {
|
|
|
251
251
|
].includes(name) && !this.customDrivers.has(name)) throw new Error(`Unsupported driver: ${name}`);
|
|
252
252
|
const driver = new Driver(config);
|
|
253
253
|
if (this.customDrivers.has(name)) return driver.custom(name);
|
|
254
|
-
return driver[
|
|
254
|
+
return driver[name].call(driver);
|
|
255
255
|
}
|
|
256
256
|
local() {
|
|
257
257
|
const config = this.config;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arkstack/filesystem",
|
|
3
|
-
"version": "0.12.
|
|
3
|
+
"version": "0.12.6",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Filesystem module for Arkstack, providing shared file storage and filesystem utitlities for the framework.",
|
|
6
6
|
"homepage": "https://arkstack.toneflix.net",
|
|
@@ -39,8 +39,8 @@
|
|
|
39
39
|
"@aws-sdk/s3-request-presigner": "^3.1011.0",
|
|
40
40
|
"flydrive": "^2.0.0",
|
|
41
41
|
"ssh2-sftp-client": "^12.1.0",
|
|
42
|
-
"@arkstack/common": "^0.12.
|
|
43
|
-
"@arkstack/contract": "^0.12.
|
|
42
|
+
"@arkstack/common": "^0.12.6",
|
|
43
|
+
"@arkstack/contract": "^0.12.6"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"@types/ssh2-sftp-client": "^9.0.6"
|