@simplysm/storage 13.0.16 → 13.0.20
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 +2 -10
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +4 -4
- package/src/index.ts +3 -6
package/README.md
CHANGED
|
@@ -12,15 +12,7 @@ npm install @simplysm/storage
|
|
|
12
12
|
pnpm add @simplysm/storage
|
|
13
13
|
```
|
|
14
14
|
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
| Package | Description |
|
|
18
|
-
|--------|------|
|
|
19
|
-
| `@simplysm/core-common` | Common utilities (`Bytes` type, etc.) |
|
|
20
|
-
| `basic-ftp` | FTP/FTPS protocol implementation |
|
|
21
|
-
| `ssh2-sftp-client` | SFTP protocol implementation |
|
|
22
|
-
|
|
23
|
-
## Core Modules
|
|
15
|
+
## Main Modules
|
|
24
16
|
|
|
25
17
|
### Export List
|
|
26
18
|
|
|
@@ -277,7 +269,7 @@ try {
|
|
|
277
269
|
}
|
|
278
270
|
```
|
|
279
271
|
|
|
280
|
-
##
|
|
272
|
+
## Caveats
|
|
281
273
|
|
|
282
274
|
### Connection Management
|
|
283
275
|
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,cAAc,6BAA6B,CAAC;AAC5C,cAAc,iBAAiB,CAAC;AAChC,cAAc,sBAAsB,CAAC;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,cAAc,6BAA6B,CAAC;AAC5C,cAAc,iBAAiB,CAAC;AAChC,cAAc,sBAAsB,CAAC;AAGrC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,+BAA+B,CAAC;AAG9C,cAAc,mBAAmB,CAAC"}
|
package/dist/index.js.map
CHANGED
package/package.json
CHANGED
|
@@ -1,15 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@simplysm/storage",
|
|
3
|
-
"
|
|
4
|
-
"version": "13.0.16",
|
|
3
|
+
"version": "13.0.20",
|
|
5
4
|
"description": "심플리즘 패키지 - 스토리지 모듈 (node)",
|
|
6
5
|
"author": "김석래",
|
|
6
|
+
"license": "Apache-2.0",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
9
9
|
"url": "https://github.com/kslhunter/simplysm.git",
|
|
10
10
|
"directory": "packages/storage"
|
|
11
11
|
},
|
|
12
|
-
"license": "Apache-2.0",
|
|
13
12
|
"type": "module",
|
|
14
13
|
"main": "./dist/index.js",
|
|
15
14
|
"types": "./dist/index.d.ts",
|
|
@@ -17,10 +16,11 @@
|
|
|
17
16
|
"dist",
|
|
18
17
|
"src"
|
|
19
18
|
],
|
|
19
|
+
"sideEffects": false,
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"basic-ftp": "^5.1.0",
|
|
22
22
|
"ssh2-sftp-client": "^12.0.1",
|
|
23
|
-
"@simplysm/core-common": "13.0.
|
|
23
|
+
"@simplysm/core-common": "13.0.20"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
26
|
"@types/ssh2-sftp-client": "^9.0.6"
|
package/src/index.ts
CHANGED
|
@@ -1,14 +1,11 @@
|
|
|
1
|
-
|
|
1
|
+
// Types
|
|
2
2
|
export * from "./types/storage-conn-config";
|
|
3
3
|
export * from "./types/storage";
|
|
4
4
|
export * from "./types/storage-type";
|
|
5
|
-
//#endregion
|
|
6
5
|
|
|
7
|
-
|
|
6
|
+
// Clients
|
|
8
7
|
export * from "./clients/ftp-storage-client";
|
|
9
8
|
export * from "./clients/sftp-storage-client";
|
|
10
|
-
//#endregion
|
|
11
9
|
|
|
12
|
-
|
|
10
|
+
// Factory
|
|
13
11
|
export * from "./storage-factory";
|
|
14
|
-
//#endregion
|