dashcam 0.5.1 → 0.5.5

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 (3) hide show
  1. package/README.md +19 -0
  2. package/package.json +1 -1
  3. package/recorder.js +1 -1
package/README.md CHANGED
@@ -6,6 +6,25 @@ Add Dashcam to your app or workflow. This package allows you to capture logs and
6
6
 
7
7
  Requires that you [install Dashcam Desktop](https://dashcam.io).
8
8
 
9
+ # Manual
10
+
11
+ ```
12
+ Usage: dashcam [options] [command]
13
+
14
+ Capture the steps to reproduce every bug.
15
+
16
+ Options:
17
+ -V, --version output the version number
18
+ -h, --help display help for command
19
+
20
+ Commands:
21
+ create [options] Create a clip and output the resulting url or markdown. Will launch desktop app for local editing before publishing.
22
+ record [options] Start a recording terminal to be included in your dashcam video recording
23
+ pipe Pipe command output to dashcam to be included in recorded video
24
+ start Start instant replay recording on dashcam
25
+ help [command] display help for command
26
+ ```
27
+
9
28
  ## Table of contents
10
29
 
11
30
  - [CLI](#cli)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dashcam",
3
- "version": "0.5.1",
3
+ "version": "0.5.5",
4
4
  "description": "Fix bugs, close pulls, and update your team with desktop instant replay.",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/recorder.js CHANGED
@@ -26,7 +26,7 @@ class Recorder {
26
26
 
27
27
  #onData(data) {
28
28
  process.stdout.write(data);
29
- fs.appendFileSync(this.#logFile, data, "ascii");
29
+ fs.appendFileSync(this.#logFile, data, "utf-8");
30
30
  }
31
31
 
32
32
  async start() {