From 51887b3317825abd79ed120409c9ee66df84e217 Mon Sep 17 00:00:00 2001 From: ShinobuTakahashi Date: Tue, 30 Jul 2024 10:56:28 +0900 Subject: [PATCH 1/4] output message at startup --- index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/index.js b/index.js index 6d77569..81982da 100644 --- a/index.js +++ b/index.js @@ -90,6 +90,7 @@ exports.run = (argv) => { debug("Listening on " + bind); } + console.warn("[warn] akashic-sandbox has been merged into akashic-cli. Please use akashic-cli."); console.log("akashic-sandbox listen port: " + port); console.log("hosting game: " + gameJsonPath); if (app.settings.scenarioPath) { From 1f79a28c9ad43af7dca76526733af2458ea6ba70 Mon Sep 17 00:00:00 2001 From: ShinobuTakahashi Date: Tue, 30 Jul 2024 10:57:09 +0900 Subject: [PATCH 2/4] bump version --- CHANGELOG.md | 3 +++ package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a64151b..9e38fbf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # CHANGELOG +## 0.28.19 +* 起動時に `akashic-cli` を利用するようメッセージを出力 + ## 0.28.18 * 内部モジュールの更新 diff --git a/package-lock.json b/package-lock.json index af64970..3cfa14f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@akashic/akashic-sandbox", - "version": "0.28.18", + "version": "0.28.19", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@akashic/akashic-sandbox", - "version": "0.28.18", + "version": "0.28.19", "license": "MIT", "dependencies": { "@akashic/game-configuration": "^2.0.0", diff --git a/package.json b/package.json index c00d89a..0c90261 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@akashic/akashic-sandbox", - "version": "0.28.18", + "version": "0.28.19", "description": "Standalone runner for Akashic contents", "main": "index.js", "scripts": { From 6ec3f317ecab290af3cea882388149388f6ff71a Mon Sep 17 00:00:00 2001 From: ShinobuTakahashi Date: Tue, 30 Jul 2024 15:44:05 +0900 Subject: [PATCH 3/4] Fix index.js --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 81982da..f6c5f3b 100644 --- a/index.js +++ b/index.js @@ -90,7 +90,7 @@ exports.run = (argv) => { debug("Listening on " + bind); } - console.warn("[warn] akashic-sandbox has been merged into akashic-cli. Please use akashic-cli."); + console.log("[warn] akashic-sandbox has been merged into akashic-cli. Please use akashic-cli."); console.log("akashic-sandbox listen port: " + port); console.log("hosting game: " + gameJsonPath); if (app.settings.scenarioPath) { From fe51d1d60af22ae36f80c91a8d89df82085548e2 Mon Sep 17 00:00:00 2001 From: ShinobuTakahashi Date: Tue, 30 Jul 2024 16:23:40 +0900 Subject: [PATCH 4/4] Fix message --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index f6c5f3b..7d0a958 100644 --- a/index.js +++ b/index.js @@ -90,7 +90,7 @@ exports.run = (argv) => { debug("Listening on " + bind); } - console.log("[warn] akashic-sandbox has been merged into akashic-cli. Please use akashic-cli."); + console.warn("[warn] akashic-sandbox has been merged into akashic-cli@2.16.64. Use `akashic sandbox` command (without '-')."); console.log("akashic-sandbox listen port: " + port); console.log("hosting game: " + gameJsonPath); if (app.settings.scenarioPath) {