Skip to content

Commit

Permalink
prettier fix
Browse files Browse the repository at this point in the history
  • Loading branch information
absorbb committed Jan 15, 2024
1 parent 54819e5 commit cddf11e
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .versions.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"beta": "2.3.*",
"latest": "2.2.*"
}
}
5 changes: 2 additions & 3 deletions cli/build-scripts/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
import minimist from 'minimist';
import minimist from "minimist";
import { docker } from "./docker";


const commands: Record<string, (args: minimist.ParsedArgs) => Promise<void>> = {
"docker": docker,
docker: docker,
};

async function main() {
Expand Down
6 changes: 2 additions & 4 deletions libs/juava/src/singleton.ts
Original file line number Diff line number Diff line change
Expand Up @@ -124,10 +124,8 @@ export function getSingleton<T>(
newInstance = factory();
} catch (error) {
handleError(error);
const singleton: Partial<Singleton<T>> = () =>
Promise.reject<T>(error);
singleton.waitInit = () =>
Promise.reject(error);
const singleton: Partial<Singleton<T>> = () => Promise.reject<T>(error);
singleton.waitInit = () => Promise.reject(error);
return singleton as Singleton<T>;
}
if (newInstance instanceof Promise) {
Expand Down
1 change: 0 additions & 1 deletion services/rotor/src/lib/config-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,3 @@ export type EnrichedConnectionConfig = {
};
credentialsHash: string;
};

0 comments on commit cddf11e

Please sign in to comment.