Compare commits

..

No commits in common. "8de05e6b7ffe050226d7e09696202d90c86cf4d4" and "7a8cc08d4a47745deff07622cc6b496b75186379" have entirely different histories.

2 changed files with 5 additions and 5 deletions

View File

@ -1,6 +1,6 @@
{
"name": "@hibas123/secure-file-wrapper",
"version": "2.0.1",
"name": "secure-file-wrapper",
"version": "2.0.2",
"main": "lib/index.js",
"author": "Fabian Stamm <dev@fabianstamm.de>",
"license": "MIT",
@ -8,7 +8,7 @@
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"prepublishOnly": "tsc",
"prepublish": "tsc",
"test": "mocha lib/test.js"
},
"dependencies": {

View File

@ -89,9 +89,9 @@ export default class SecureFileWrapper {
private _jwtObservableServer: Observable<(jwt: string) => void> = new Observable();
jwtObservable = this._jwtObservableServer.getPublicApi();
private jwt: string;
jwt: string;
private auth_lock = new Lock();
auth_lock = new Lock();
constructor(private server: string) {
if (this.server.endsWith("/")) {