fix(core): update
This commit is contained in:
parent
52bad357fe
commit
e44b7875e6
@ -15,7 +15,6 @@
|
|||||||
"@gitzone/tsbuild": "^2.1.25",
|
"@gitzone/tsbuild": "^2.1.25",
|
||||||
"@gitzone/tsbundle": "^1.0.78",
|
"@gitzone/tsbundle": "^1.0.78",
|
||||||
"@gitzone/tstest": "^1.0.44",
|
"@gitzone/tstest": "^1.0.44",
|
||||||
"@pushrocks/smartbucket": "^1.0.44",
|
|
||||||
"@pushrocks/tapbundle": "^3.2.9",
|
"@pushrocks/tapbundle": "^3.2.9",
|
||||||
"@types/node": "^17.0.0",
|
"@types/node": "^17.0.0",
|
||||||
"tslint": "^6.1.3",
|
"tslint": "^6.1.3",
|
||||||
@ -37,6 +36,7 @@
|
|||||||
"readme.md"
|
"readme.md"
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
"@pushrocks/smartbucket": "^1.0.44",
|
||||||
"@pushrocks/smartfile": "^9.0.3",
|
"@pushrocks/smartfile": "^9.0.3",
|
||||||
"@types/s3rver": "^3.7.0",
|
"@types/s3rver": "^3.7.0",
|
||||||
"s3rver": "^3.7.1"
|
"s3rver": "^3.7.1"
|
||||||
|
10
ts/index.ts
10
ts/index.ts
@ -40,6 +40,16 @@ export class Smarts3 {
|
|||||||
console.log('s3 server is running');
|
console.log('s3 server is running');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public async getLocalS3Descriptor(): Promise<plugins.smartbucket.ISmartBucketConfig> {
|
||||||
|
return {
|
||||||
|
accessKey: this.dataForClient.s3AccessKey,
|
||||||
|
accessSecret: this.dataForClient.s3AccessSecret,
|
||||||
|
endpoint: 'localhost',
|
||||||
|
port: this.dataForClient.port,
|
||||||
|
useSsl: this.dataForClient.useSsl,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
public async stop() {
|
public async stop() {
|
||||||
await this.s3Instance.close();
|
await this.s3Instance.close();
|
||||||
}
|
}
|
||||||
|
@ -6,10 +6,12 @@ export {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// pushrocks scope
|
// pushrocks scope
|
||||||
import * as samrtfile from '@pushrocks/smartfile';
|
import * as smartbucket from '@pushrocks/smartbucket';
|
||||||
|
import * as smartfile from '@pushrocks/smartfile';
|
||||||
|
|
||||||
export {
|
export {
|
||||||
samrtfile as smartfile
|
smartbucket,
|
||||||
|
smartfile,
|
||||||
}
|
}
|
||||||
|
|
||||||
// thirdparty scope
|
// thirdparty scope
|
||||||
|
Loading…
Reference in New Issue
Block a user