Skip to content

Commit

Permalink
chore: deps
Browse files Browse the repository at this point in the history
  • Loading branch information
iCrawl committed Nov 30, 2023
1 parent 1680353 commit d88990c
Show file tree
Hide file tree
Showing 5 changed files with 476 additions and 162 deletions.
4 changes: 2 additions & 2 deletions apps/report/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"ansi-to-html": "^0.7.2",
"hast-util-has-property": "^3.0.0",
"hast-util-is-element": "^3.0.0",
"hast-util-select": "6.0.1",
"hast-util-select": "6.0.2",
"hast-util-to-string": "^3.0.0",
"hastscript": "^8.0.0",
"next": "^14.0.3",
Expand All @@ -37,7 +37,7 @@
"rehype-parse": "^9.0.0",
"rehype-raw": "^7.0.0",
"rehype-slug": "^6.0.0",
"remark-gfm": "^3.0.1",
"remark-gfm": "^4.0.0",
"sharp": "^0.33.0",
"undici": "^5.28.2",
"unified": "11.0.3",
Expand Down
21 changes: 9 additions & 12 deletions apps/report/src/app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,15 +1,18 @@
import type { Metadata } from "next";
import type { Metadata, Viewport } from "next";
import type { PropsWithChildren } from "react";

import "~/styles/main.css";

export const viewport: Viewport = {
themeColor: [
{ media: "(prefers-color-scheme: light)", color: "#ffffff" },
{ media: "(prefers-color-scheme: dark)", color: "#0d1117" },
],
colorScheme: "light dark",
};

export const metadata: Metadata = {
title: "Yuudachi Report",
viewport: {
minimumScale: 1,
initialScale: 1,
width: "device-width",
},
icons: {
other: [
{
Expand All @@ -34,12 +37,6 @@ export const metadata: Metadata = {

manifest: "/site.webmanifest",

themeColor: [
{ media: "(prefers-color-scheme: light)", color: "#ffffff" },
{ media: "(prefers-color-scheme: dark)", color: "#0d1117" },
],
colorScheme: "light dark",

appleWebApp: {
title: "Yuudachi Report",
},
Expand Down
21 changes: 9 additions & 12 deletions apps/website/src/app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,18 +1,21 @@
import type { Metadata } from "next";
import type { Metadata, Viewport } from "next";
import type { PropsWithChildren } from "react";
import { Providers } from "./providers";

import "@unocss/reset/tailwind.css";
import "../styles/unocss.css";
import "../styles/main.css";

export const viewport: Viewport = {
themeColor: [
{ media: "(prefers-color-scheme: light)", color: "#ffffff" },
{ media: "(prefers-color-scheme: dark)", color: "#181818" },
],
colorScheme: "light dark",
};

export const metadata: Metadata = {
title: "Yuudachi",
viewport: {
minimumScale: 1,
initialScale: 1,
width: "device-width",
},
icons: {
other: [
{
Expand All @@ -37,12 +40,6 @@ export const metadata: Metadata = {

manifest: "/site.webmanifest",

themeColor: [
{ media: "(prefers-color-scheme: light)", color: "#ffffff" },
{ media: "(prefers-color-scheme: dark)", color: "#181818" },
],
colorScheme: "light dark",

appleWebApp: {
title: "Yuudachi",
},
Expand Down
2 changes: 1 addition & 1 deletion apps/yuudachi/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"@swc/helpers": "^0.5.3",
"@yuudachi/framework": "workspace:^",
"bufferutil": "^4.0.8",
"bullmq": "^3.15.8",
"bullmq": "^4.14.4",
"common-tags": "^1.8.2",
"dayjs": "^1.11.10",
"diff": "^5.1.0",
Expand Down
Loading

2 comments on commit d88990c

@vercel
Copy link

@vercel vercel bot commented on d88990c Nov 30, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

yuudachi-report – ./apps/report

yuudachi-report-git-main-discordjs.vercel.app
yuudachi-report.vercel.app
yuudachi-report-discordjs.vercel.app

@vercel
Copy link

@vercel vercel bot commented on d88990c Nov 30, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

yuudachi – ./apps/website

yuudachi-discordjs.vercel.app
www.yuudachi.dev
yuudachi.vercel.app
yuudachi-git-main-discordjs.vercel.app
yuudachi.dev

Please sign in to comment.