@yongdall/fs-s3 0.3.0 → 0.5.0
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/package.json +2 -2
- package/yongdall/provider.mjs +10 -0
- package/yongdall/provider.mjs.map +1 -0
- package/yongdall.plugin.yml +1 -0
- package/hooks.yongdall.mjs +0 -10
- package/hooks.yongdall.mjs.map +0 -1
package/package.json
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yongdall/fs-s3",
|
|
3
|
+
"version": "0.5.0",
|
|
3
4
|
"type": "module",
|
|
4
5
|
"main": "./index.mjs",
|
|
5
6
|
"exports": {
|
|
@@ -8,7 +9,6 @@
|
|
|
8
9
|
"imports": {
|
|
9
10
|
"#index": "./index.mjs"
|
|
10
11
|
},
|
|
11
|
-
"version": "0.3.0",
|
|
12
12
|
"description": "",
|
|
13
13
|
"keywords": [],
|
|
14
14
|
"author": "",
|
|
@@ -19,6 +19,6 @@
|
|
|
19
19
|
"@smithy/node-http-handler": "^4.4.7"
|
|
20
20
|
},
|
|
21
21
|
"devDependencies": {
|
|
22
|
-
"@yongdall/connection": "^0.
|
|
22
|
+
"@yongdall/connection": "^0.5.0"
|
|
23
23
|
}
|
|
24
24
|
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import s3 from "#index";
|
|
2
|
+
|
|
3
|
+
//#region providers/fs-s3/yongdall/provider.mjs
|
|
4
|
+
/** @import { ProviderProfile } from '@yongdall/connection' */
|
|
5
|
+
/** @type {ProviderProfile['fs']} */
|
|
6
|
+
const fs = { s3 };
|
|
7
|
+
|
|
8
|
+
//#endregion
|
|
9
|
+
export { fs };
|
|
10
|
+
//# sourceMappingURL=provider.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"provider.mjs","names":[],"sources":["../../../providers/fs-s3/yongdall/provider.mjs"],"sourcesContent":["/** @import { ProviderProfile } from '@yongdall/connection' */\nimport s3 from '#index';\n\n/** @type {ProviderProfile['fs']} */\nexport const fs = { s3 };\n"],"mappings":";;;;;AAIA,MAAa,KAAK,EAAE,IAAI"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
label: s3 文件存储支持
|
package/hooks.yongdall.mjs
DELETED
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import s3 from "#index";
|
|
2
|
-
|
|
3
|
-
//#region providers/fs-s3/hooks.yongdall.mjs
|
|
4
|
-
/** @import { Hooks } from '@yongdall/connection' */
|
|
5
|
-
/** @type {Hooks.providers} */
|
|
6
|
-
const providers = { fs: { s3 } };
|
|
7
|
-
|
|
8
|
-
//#endregion
|
|
9
|
-
export { providers };
|
|
10
|
-
//# sourceMappingURL=hooks.yongdall.mjs.map
|
package/hooks.yongdall.mjs.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"hooks.yongdall.mjs","names":[],"sources":["../../providers/fs-s3/hooks.yongdall.mjs"],"sourcesContent":["import s3 from '#index';\n/** @import { Hooks } from '@yongdall/connection' */\n/** @type {Hooks.providers} */\nexport const providers = {\n\tfs: { s3 },\n};\n"],"mappings":";;;;;AAGA,MAAa,YAAY,EACxB,IAAI,EAAE,IAAI,EACV"}
|