bump some deps

This commit is contained in:
2022-07-13 16:00:44 -04:00
parent 9be41b5e5c
commit 39ef018537
12 changed files with 279 additions and 273 deletions
+1 -1
View File
@@ -31,7 +31,7 @@ export const logServerError = async (error: unknown) => {
console.error(error);
// we really don't want to return *any* error from logging an error, so just keep it on the dl
return true;
return Promise.resolve();
};
export default IsomorphicSentry;
+5 -1
View File
@@ -1,4 +1,5 @@
import { createStitches } from "@stitches/react";
import type * as Stitches from "@stitches/react";
// misc. helpers
import hexToRgba from "hex-to-rgba";
@@ -7,7 +8,10 @@ import normalizeStyles from "./utils/normalize";
// web fonts
import { Inter, RobotoMono } from "./fonts";
export const { styled, css, getCssText, globalCss, keyframes, createTheme, theme, config, reset } = createStitches({
// https://stitches.dev/docs/typescript#type-a-css-object
export type CSS = Stitches.CSS<typeof config>;
export const { styled, css, getCssText, globalCss, keyframes, createTheme, theme, config } = createStitches({
theme: {
fonts: {
sans: `"${Inter.name.regular}", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif`,