@simplysm/storage 13.0.81 → 13.0.83
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 +1 -1
- package/package.json +2 -3
package/README.md
CHANGED
|
@@ -153,7 +153,7 @@ try {
|
|
|
153
153
|
if (exists) {
|
|
154
154
|
const data = await client.readFile("/remote/file.txt");
|
|
155
155
|
}
|
|
156
|
-
await client.put(
|
|
156
|
+
await client.put(new TextEncoder().encode("hello"), "/remote/hello.txt");
|
|
157
157
|
} finally {
|
|
158
158
|
await client.close();
|
|
159
159
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@simplysm/storage",
|
|
3
|
-
"version": "13.0.
|
|
3
|
+
"version": "13.0.83",
|
|
4
4
|
"description": "Simplysm Package - Storage Module (node)",
|
|
5
5
|
"author": "simplysm",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -14,7 +14,6 @@
|
|
|
14
14
|
"types": "./dist/index.d.ts",
|
|
15
15
|
"files": [
|
|
16
16
|
"dist",
|
|
17
|
-
"docs",
|
|
18
17
|
"src",
|
|
19
18
|
"tests"
|
|
20
19
|
],
|
|
@@ -22,7 +21,7 @@
|
|
|
22
21
|
"dependencies": {
|
|
23
22
|
"basic-ftp": "^5.2.0",
|
|
24
23
|
"ssh2-sftp-client": "^12.1.0",
|
|
25
|
-
"@simplysm/core-common": "13.0.
|
|
24
|
+
"@simplysm/core-common": "13.0.83"
|
|
26
25
|
},
|
|
27
26
|
"devDependencies": {
|
|
28
27
|
"@types/ssh2-sftp-client": "^9.0.6"
|