fullstacked 0.12.0-1195 → 0.12.0-1198

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.
@@ -12,22 +12,17 @@ function setListenerOnce() {
12
12
  if (addedListener) return;
13
13
 
14
14
  core_message.addListener("git-pull", (message) => {
15
- console.log(message);
16
15
  const { url, data, finished } = JSON.parse(message);
17
16
  if (!finished) return;
18
17
  const promises = pullPromises.get(url);
19
18
  promises?.forEach((resolve) => resolve(data));
20
19
  pullPromises.delete(url);
21
20
  });
22
-
23
- core_message.addListener("git-push", console.log);
24
-
25
21
  addedListener = true;
26
22
  }
27
23
 
28
24
  // 81
29
25
  export function gitAuthResponse(id: number, success: boolean) {
30
- console.log(id, success);
31
26
  const payload = new Uint8Array([81, ...serializeArgs([id, success])]);
32
27
  bridge(payload);
33
28
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fullstacked",
3
- "version": "0.12.0-1195",
3
+ "version": "0.12.0-1198",
4
4
  "scripts": {
5
5
  "build": "node build.js",
6
6
  "start": "npm run build && node index.js --lib ../../core/bin --root ~/FullStacked --config ~/.config/fullstacked --editor ../../out/editor",