codex-to-poke 0.1.1 → 0.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/index.js +2 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codex-to-poke",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "Unofficial local Poke to Codex bridge.",
5
5
  "license": "MIT",
6
6
  "type": "module",
package/src/index.js CHANGED
@@ -151,7 +151,8 @@ async function startStack() {
151
151
 
152
152
  await startPokeTunnel();
153
153
  statuses.poke = 'ok';
154
- console.log("✅ Everything's fine. pokedex is ready.");
154
+ console.log("✅ Everything's fine, we're ready.\n");
155
+ console.log('Try saying "is pokedex connected?" to your Poke!\n');
155
156
  console.log('Type "help" for commands. Keep this terminal open while you use Poke.\n');
156
157
  }
157
158