dashcam 0.7.0 → 0.7.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/lib.js +5 -5
  2. package/package.json +1 -1
package/lib.js CHANGED
@@ -17,9 +17,9 @@ const connectToIpc = function (timeout) {
17
17
  let timeoutToClean;
18
18
  ipc.connectTo("dashcam");
19
19
  ipc.of.dashcam.on("connect", () => {
20
- console.log(
21
- clc.green("Connected to Dashcam!")
22
- );
20
+ // console.log(
21
+ // clc.green("Connected to Dashcam!")
22
+ // );
23
23
  resolve();
24
24
  if (timeoutToClean) clearTimeout(timeoutToClean);
25
25
  });
@@ -159,11 +159,11 @@ class PersistantDashcamIPC {
159
159
  this.onConnected();
160
160
  });
161
161
  persistantIPC.of.dashcam.on("disconnect", () => {
162
- console.log('disconnected')
162
+ // console.log('disconnected')
163
163
  this.#isConnected = false;
164
164
  });
165
165
  persistantIPC.of.dashcam.on("error", (e) => {
166
- console.log(e)
166
+ // console.log(e)
167
167
  this.#isConnected = false;
168
168
  });
169
169
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dashcam",
3
- "version": "0.7.0",
3
+ "version": "0.7.2",
4
4
  "description": "Fix bugs, close pulls, and update your team with desktop instant replay.",
5
5
  "main": "index.js",
6
6
  "scripts": {