From 572c65fbac3a63222afe7ce41d42e319ba9ad154 Mon Sep 17 00:00:00 2001
From: na-trium-144 <100704180+na-trium-144@users.noreply.github.com>
Date: Tue, 18 Nov 2025 17:14:54 +0900
Subject: [PATCH 1/4] =?UTF-8?q?=E3=82=B5=E3=83=B3=E3=83=97=E3=83=AB?=
=?UTF-8?q?=E3=83=9A=E3=83=BC=E3=82=B8=E3=81=AE=E3=82=B3=E3=83=BC=E3=83=89?=
=?UTF-8?q?=E3=81=AB=E7=BD=AE=E3=81=8D=E6=8F=9B=E3=81=88=E3=83=9F=E3=82=B9?=
=?UTF-8?q?=E3=81=A7\x1b=E3=81=8C=E5=85=A5=E3=81=A3=E3=81=A6=E3=81=84?=
=?UTF-8?q?=E3=81=9F=E3=81=AE=E3=82=92=E4=BF=AE=E6=AD=A3?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
app/terminal/page.tsx | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/app/terminal/page.tsx b/app/terminal/page.tsx
index 4f57ac9..aad5628 100644
--- a/app/terminal/page.tsx
+++ b/app/terminal/page.tsx
@@ -57,7 +57,7 @@ interface SampleConfig {
const sampleConfig: Record = {
python: {
repl: true,
- replInitContent: '>>> print("Hello, World!")\x1b[0m\nHello, World!',
+ replInitContent: '>>> print("Hello, World!")\nHello, World!',
editor: {
"main.py": 'print("Hello, World!")',
},
@@ -66,7 +66,7 @@ const sampleConfig: Record = {
ruby: {
repl: true,
replInitContent:
- 'irb(main):001:0> puts "Hello, World!"\x1b[0m\nHello, World!',
+ 'irb(main):001:0> puts "Hello, World!"\nHello, World!',
editor: {
"main.rb": 'puts "Hello, World!"',
},
@@ -74,7 +74,7 @@ const sampleConfig: Record = {
},
javascript: {
repl: true,
- replInitContent: '> console.log("Hello, World!");\x1b[0m\nHello, World!',
+ replInitContent: '> console.log("Hello, World!");\nHello, World!',
editor: {
"main.js": 'console.log("Hello, World!");',
},
@@ -84,7 +84,7 @@ const sampleConfig: Record = {
repl: false,
editor: {
"main.ts":
- 'function greet(name: string): void {\x1b[0m\n console.log("Hello, " + name + "!");\x1b[0m\n}\x1b[0m\n\x1b[0m\ngreet("World");',
+ 'function greet(name: string): void {\n console.log("Hello, " + name + "!");\n}\n\ngreet("World");',
},
exec: ["main.ts"],
},
From e94df21beff8d7fda8c1c34cff2b52c7f402e321 Mon Sep 17 00:00:00 2001
From: na-trium-144 <100704180+na-trium-144@users.noreply.github.com>
Date: Tue, 18 Nov 2025 17:42:05 +0900
Subject: [PATCH 2/4] =?UTF-8?q?sidebar=E3=82=92=E9=96=8B=E3=81=84=E3=81=9F?=
=?UTF-8?q?=E9=9A=9B=E3=81=AE=E8=83=8C=E6=99=AF=E8=89=B2=E3=81=AE=E3=83=90?=
=?UTF-8?q?=E3=82=B0=E3=82=92=E4=BF=AE=E6=AD=A3?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
app/layout.tsx | 2 +-
package-lock.json | 8 ++++----
package.json | 2 +-
3 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/app/layout.tsx b/app/layout.tsx
index 53e50cc..73e0a8a 100644
--- a/app/layout.tsx
+++ b/app/layout.tsx
@@ -24,7 +24,7 @@ export default function RootLayout({
}: Readonly<{ children: ReactNode }>) {
return (
-
+
{/* mocha.css がbodyに背景色などを設定してしまうので、それを上書きしている */}
diff --git a/package-lock.json b/package-lock.json
index 46bb386..8158e22 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -51,7 +51,7 @@
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/react-syntax-highlighter": "^15.5.13",
- "daisyui": "^5.0.50",
+ "daisyui": "^5.5.5",
"drizzle-kit": "^0.31.5",
"eslint": "^9",
"eslint-config-next": "<15.4",
@@ -14073,9 +14073,9 @@
"license": "MIT"
},
"node_modules/daisyui": {
- "version": "5.0.50",
- "resolved": "https://registry.npmjs.org/daisyui/-/daisyui-5.0.50.tgz",
- "integrity": "sha512-c1PweK5RI1C76q58FKvbS4jzgyNJSP6CGTQ+KkZYzADdJoERnOxFoeLfDHmQgxLpjEzlYhFMXCeodQNLCC9bow==",
+ "version": "5.5.5",
+ "resolved": "https://registry.npmjs.org/daisyui/-/daisyui-5.5.5.tgz",
+ "integrity": "sha512-ekvI93ZkWIJoCOtDl0D2QMxnWvTejk9V5nWBqRv+7t0xjiBXqAK5U6o6JE2RPvlIC3EqwNyUoIZSdHX9MZK3nw==",
"dev": true,
"license": "MIT",
"funding": {
diff --git a/package.json b/package.json
index 5f50b18..0b0670b 100644
--- a/package.json
+++ b/package.json
@@ -59,7 +59,7 @@
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/react-syntax-highlighter": "^15.5.13",
- "daisyui": "^5.0.50",
+ "daisyui": "^5.5.5",
"drizzle-kit": "^0.31.5",
"eslint": "^9",
"eslint-config-next": "<15.4",
From ffc5d3273f704fbd03f4a6439708f53db4359f7e Mon Sep 17 00:00:00 2001
From: na-trium-144 <100704180+na-trium-144@users.noreply.github.com>
Date: Tue, 18 Nov 2025 17:52:45 +0900
Subject: [PATCH 3/4] =?UTF-8?q?mocha=E3=81=AE=E3=83=95=E3=82=A9=E3=83=B3?=
=?UTF-8?q?=E3=83=88=E3=81=8C=E6=B0=97=E3=81=AB=E3=81=AA=E3=81=A3=E3=81=9F?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
app/terminal/page.tsx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app/terminal/page.tsx b/app/terminal/page.tsx
index aad5628..56f69bd 100644
--- a/app/terminal/page.tsx
+++ b/app/terminal/page.tsx
@@ -268,7 +268,7 @@ function MochaTest() {
>
)}
-
+
);
}
From 6658ad17eca6a20792c435d0054e263b2bbd96d0 Mon Sep 17 00:00:00 2001
From: na-trium-144 <100704180+na-trium-144@users.noreply.github.com>
Date: Tue, 18 Nov 2025 18:02:14 +0900
Subject: [PATCH 4/4] =?UTF-8?q?=E3=82=BF=E3=83=96=E3=81=AE=E3=83=86?=
=?UTF-8?q?=E3=83=BC=E3=83=9E=E3=82=92=E5=A4=89=E6=9B=B4?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
app/terminal/page.tsx | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/app/terminal/page.tsx b/app/terminal/page.tsx
index 56f69bd..ad02bd3 100644
--- a/app/terminal/page.tsx
+++ b/app/terminal/page.tsx
@@ -23,7 +23,7 @@ export default function RuntimeTestPage() {
REPLとコード実行のサンプル
{/* name of each tab group should be unique */}
-