fix all linting issues, upgrade most packages

This commit is contained in:
41666 2022-01-30 04:53:13 -05:00
parent c7774ddca3
commit 3c3af304f7
45 changed files with 1148 additions and 1848 deletions

View file

@ -0,0 +1 @@
export {};

View file

@ -1,5 +0,0 @@
describe('GET /~template', () => {
it('returns Not Implemented when called', () => {
expect(true).toBe(true);
});
});

View file

@ -1,6 +0,0 @@
import { Context, RoleypolyHandler } from '@roleypoly/api/src/utils/context';
import { notImplemented } from '@roleypoly/api/src/utils/response';
export const template: RoleypolyHandler = async (request: Request, context: Context) => {
return notImplemented();
};