summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorまっちゃとーにゅ <17376330+u1-liquid@users.noreply.github.com>2024-01-23 07:57:56 +0900
committerGitHub <noreply@github.com>2024-01-23 07:57:56 +0900
commitd2ccce6366d05ae21c242d9feb16f61386958896 (patch)
treef56951e0a1ef173a29f881e5e903ca87959eae4e
parentperf: (productionの)dependenciesから@typesを削除、reversi/bubble-game... (diff)
downloadmisskey-d2ccce6366d05ae21c242d9feb16f61386958896.tar.gz
misskey-d2ccce6366d05ae21c242d9feb16f61386958896.tar.bz2
misskey-d2ccce6366d05ae21c242d9feb16f61386958896.zip
fix(build): スクリプトの名前の変更漏れ (#13068)
* fix(build): スクリプトの名前の変更漏れ * 漏れの漏れ
-rw-r--r--packages/misskey-reversi/package.json4
1 files 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\"",