2 Commits

Author SHA1 Message Date
Vladislav Hristov
0049fffc00 up the version to 0.0.8 2019-10-08 16:10:08 +03:00
Vladislav Hristov
2c9040904a chore: remove console.log statements 2019-10-08 16:09:08 +03:00
3 changed files with 2 additions and 5 deletions

View File

@@ -63,11 +63,10 @@ module.exports = class BankLetter {
try {
fs.writeFileSync(path, letter);
console.log(`Data written to file on path '${path}'`);
} catch (error) {
console.error(`error while writing bank letter to path '${path}' with error ${error}`);
throw error;
}
return new Promise(resolve => resolve(true));
}
};

View File

@@ -58,9 +58,7 @@ module.exports = dir => ({
try {
fs.writeFileSync(path, this.traceData);
console.log("Data written to file");
} catch (error) {
console.log(error);
throw error;
}
},

View File

@@ -1,6 +1,6 @@
{
"name": "ebics-client",
"version": "0.0.7",
"version": "0.0.8",
"description": "Node.js ISO 20022 Compliant EBICS Client",
"main": "index.js",
"scripts": {