Skip to content

Commit dd7bbee

Browse files
committed
style: 💄 run Prettier
1 parent 70170e8 commit dd7bbee

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

src/__demos__/json-crdt-server/main-http1.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ const main = async () => {
1313
caller: createCaller(services).caller,
1414
logger: console,
1515
});
16-
16+
1717
// tslint:disable-next-line:no-console
18-
console.log(server + '');
18+
console.log(server + '');
1919
};
2020

2121
main().catch(console.error);

src/__demos__/json-crdt-server/main-uws.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ import type {MyCtx} from './services/types';
88

99
export type JsonJoyDemoRpcCaller = ReturnType<typeof createCaller>['caller'];
1010

11-
1211
const main = async () => {
1312
const services = await createServices();
1413
const app = new RpcApp<MyCtx>({

src/__demos__/json-crdt-server/routes/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ export const createServices = async () => {
4444
const kv = new ClassicLevel<string, Uint8Array>(path, {valueEncoding: 'view'});
4545
await kv.open();
4646
store = new LevelStore(<any>kv);
47-
await kv.close()
47+
await kv.close();
4848
}
4949
const services = new Services({store});
5050
return services;

0 commit comments

Comments
 (0)