Compare commits

..

2 Commits

Author SHA1 Message Date
c4374da42a 1.0.10 2019-10-15 20:00:00 +02:00
7ba61904ee fix(core): update 2019-10-15 20:00:00 +02:00
4 changed files with 5 additions and 5 deletions

2
package-lock.json generated
View File

@ -1,6 +1,6 @@
{ {
"name": "@pushrocks/smartbucket", "name": "@pushrocks/smartbucket",
"version": "1.0.9", "version": "1.0.10",
"lockfileVersion": 1, "lockfileVersion": 1,
"requires": true, "requires": true,
"dependencies": { "dependencies": {

View File

@ -1,6 +1,6 @@
{ {
"name": "@pushrocks/smartbucket", "name": "@pushrocks/smartbucket",
"version": "1.0.9", "version": "1.0.10",
"description": "simple cloud independent object storage", "description": "simple cloud independent object storage",
"main": "dist/index.js", "main": "dist/index.js",
"typings": "dist/index.d.ts", "typings": "dist/index.d.ts",

View File

@ -31,7 +31,7 @@ tap.test('should get a bucket', async () => {
}); });
tap.test('should store data in bucket', async () => { tap.test('should store data in bucket', async () => {
myBucket.store
}); });
tap.start(); tap.start();

View File

@ -37,7 +37,7 @@ export class Bucket {
/** /**
* store file * store file
*/ */
public store(fileName:) { public store(pathArg: string, fileContent: string) {
} }
} }