general cleanup

This commit is contained in:
checktheroads 2021-01-05 22:48:38 -07:00
parent 9d9373f8a0
commit e23e1fb924
3 changed files with 6 additions and 4 deletions

View file

@ -7,7 +7,6 @@ export const CardBody: React.FC<TCardBody> = (props: TCardBody) => {
const { onClick, ...rest } = props;
const bg = useColorValue('white', 'dark.500');
const color = useColorValue('dark.500', 'white');
console.log('some shit');
return (
<Flex
bg={bg}

View file

@ -118,6 +118,7 @@ function Methods(inst?: State<TLGState>): Plugin | TMethodsExtension {
return {
id: MethodsId,
init: () => {
/* eslint @typescript-eslint/ban-types: 0 */
return new MethodsInstance() as {};
},
};

View file

@ -6,13 +6,15 @@
"license": "BSD-3-Clause-Clear",
"private": true,
"scripts": {
"lint": "eslint .",
"dev": "node nextdev",
"build": "next build && next export -o ../hyperglass/static/ui",
"start": "next start",
"clean": "rimraf --no-glob ./.next ./out",
"typecheck": "tsc --noEmit",
"format": "prettier -c -w .",
"clean": "rimraf --no-glob ./.next ./out",
"check:es:export": "es-check es5 './out/**/*.js' -v",
"check:es:build": "es-check es5 './.next/static/**/*.js' -v",
"check:es:export": "es-check es5 './out/**/*.js' -v"
"build": "next build && next export -o ../hyperglass/static/ui"
},
"browserslist": "> 0.25%, not dead",
"dependencies": {