From d2ccce6366d05ae21c242d9feb16f61386958896 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E3=81=BE=E3=81=A3=E3=81=A1=E3=82=83=E3=81=A8=E3=83=BC?=
 =?UTF-8?q?=E3=81=AB=E3=82=85?=
 <17376330+u1-liquid@users.noreply.github.com>
Date: Tue, 23 Jan 2024 07:57:56 +0900
Subject: [PATCH] =?UTF-8?q?fix(build):=20=E3=82=B9=E3=82=AF=E3=83=AA?=
 =?UTF-8?q?=E3=83=97=E3=83=88=E3=81=AE=E5=90=8D=E5=89=8D=E3=81=AE=E5=A4=89?=
 =?UTF-8?q?=E6=9B=B4=E6=BC=8F=E3=82=8C=20(#13068)?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

* fix(build): スクリプトの名前の変更漏れ

* 漏れの漏れ
---
 packages/misskey-reversi/package.json | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/packages/misskey-reversi/package.json b/packages/misskey-reversi/package.json
index 7940b9bacf..47793200ef 100644
--- a/packages/misskey-reversi/package.json
+++ b/packages/misskey-reversi/package.json
@@ -14,8 +14,8 @@
 	},
 	"scripts": {
 		"build": "node ./build.js",
-		"build:tsc": "npm run ts",
-		"tsc": "npm run ts-esm && npm run ts-dts",
+		"build:tsc": "npm run tsc",
+		"tsc": "npm run tsc-esm && npm run tsc-dts",
 		"tsc-esm": "tsc --outDir built/esm",
 		"tsc-dts": "tsc --outDir built/dts --declaration true --emitDeclarationOnly true --declarationMap true",
 		"watch": "nodemon -w src -e ts,js,cjs,mjs,json --exec \"pnpm run build:tsc\"",