fix(core): update

This commit is contained in:
Philipp Kunz 2022-10-17 11:00:42 +02:00
parent 192216c7ec
commit 07a4d024a8
3 changed files with 3 additions and 5 deletions

View File

@ -64,4 +64,4 @@
"browserslist": [
"last 1 chrome versions"
]
}
}

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@mojoio/docker',
version: '1.0.104',
version: '1.0.105',
description: 'easy communication with docker remote api from node, TypeScript ready'
}

View File

@ -45,9 +45,7 @@ export class DockerHost {
throw new Error(response.body.Status);
}
console.log(response.body.Status);
this.registryToken = plugins.smartstring.base64.encode(
plugins.smartjson.stringify(authData)
);
this.registryToken = plugins.smartstring.base64.encode(plugins.smartjson.stringify(authData));
}
/**