term-survivors 0.2.0 → 0.2.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/README.md +4 -2
  2. package/package.json +6 -6
package/README.md CHANGED
@@ -34,7 +34,7 @@ term-survivors
34
34
 
35
35
  ```bash
36
36
  term-survivors --help
37
- term-survivors 0.2.0
37
+ term-survivors 0.2.2
38
38
 
39
39
  USAGE:
40
40
  term-survivors [COMMAND]
@@ -75,7 +75,9 @@ term-survivors clear
75
75
 
76
76
  ## Logs
77
77
 
78
- Logs are written to `~/.term_survivors/logs/latest.log` and overwritten each session. Attach this file when reporting issues.
78
+ Each session writes debug logs to `~/.term_survivors/logs/latest.log` (overwritten on startup). The log records key events such as game start, level-up choices, and game over/clear outcomes, as well as any errors encountered during the session.
79
+
80
+ If you're reporting a bug, please include the contents of this file in your [issue](https://github.com/kimulaco/term-survivors/issues) — it helps narrow down what happened.
79
81
 
80
82
  ## Development
81
83
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "term-survivors",
3
- "version": "0.2.0",
3
+ "version": "0.2.2",
4
4
  "description": "A Vampire Survivors-like roguelike shooter that runs in the terminal",
5
5
  "keywords": [
6
6
  "game",
@@ -25,10 +25,10 @@
25
25
  "term-survivors": "index.js"
26
26
  },
27
27
  "optionalDependencies": {
28
- "@term-survivors/darwin-arm64": "0.2.0",
29
- "@term-survivors/darwin-x64": "0.2.0",
30
- "@term-survivors/linux-x64": "0.2.0",
31
- "@term-survivors/linux-arm64": "0.2.0",
32
- "@term-survivors/win32-x64": "0.2.0"
28
+ "@term-survivors/darwin-arm64": "0.2.2",
29
+ "@term-survivors/darwin-x64": "0.2.2",
30
+ "@term-survivors/linux-x64": "0.2.2",
31
+ "@term-survivors/linux-arm64": "0.2.2",
32
+ "@term-survivors/win32-x64": "0.2.2"
33
33
  }
34
34
  }