fullstacked 0.11.3-1111 → 0.11.3-1134

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.
package/index.js CHANGED
@@ -470,7 +470,7 @@ function quickInstallPacakge(editorHeader) {
470
470
  const cb2 = (_, messageType, message) => {
471
471
  if (messageType === "packages-installation") {
472
472
  const { duration } = JSON.parse(message);
473
- if (duration) {
473
+ if (typeof duration !== "undefined") {
474
474
  cbListener.delete(cb2);
475
475
  resolve();
476
476
  }
@@ -154,11 +154,11 @@ function receivedResponse2(base64Data: string) {
154
154
 
155
155
  const it = {
156
156
  next: read
157
- } as AsyncIterator<Uint8Array>
157
+ } as AsyncIterator<Uint8Array>;
158
158
 
159
159
  const responseIterator = {
160
160
  [Symbol.asyncIterator]() {
161
- return it
161
+ return it;
162
162
  }
163
163
  };
164
164
 
@@ -313,6 +313,6 @@ function iteratorToStream(iterator: AsyncIterator<Uint8Array>) {
313
313
  if (done) {
314
314
  controller.close();
315
315
  }
316
- },
316
+ }
317
317
  });
318
318
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fullstacked",
3
- "version": "0.11.3-1111",
3
+ "version": "0.11.3-1134",
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",