forked from mirrors/thatmattlove-hyperglass
general cleanup
This commit is contained in:
parent
9d9373f8a0
commit
e23e1fb924
3 changed files with 6 additions and 4 deletions
|
|
@ -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}
|
||||
|
|
|
|||
|
|
@ -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 {};
|
||||
},
|
||||
};
|
||||
|
|
|
|||
8
hyperglass/ui/package.json
vendored
8
hyperglass/ui/package.json
vendored
|
|
@ -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": {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue