@zohodesk/react-cli 1.1.23-exp.4 → 1.1.24

Sign up to get free protection for your applications and to get access to all the features.
package/README.md CHANGED
@@ -44,6 +44,10 @@ Now to run app
44
44
 
45
45
  # Change Logs
46
46
 
47
+ # 1.1.24 (29-06-2024)
48
+
49
+ - Worker loading logic fixes.
50
+
47
51
  # 1.1.23 (28-06-2024)
48
52
 
49
53
  **Features**
@@ -112,10 +112,9 @@ function pitch(request) {
112
112
  }
113
113
 
114
114
  function workerCode() {
115
- if (this.workerInstance) {
116
- return this.workerInstance;
117
- }
118
-
115
+ // if (this.workerInstance) {
116
+ // return this.workerInstance;
117
+ // }
119
118
  let blob;
120
119
 
121
120
  try {
@@ -127,9 +126,11 @@ function pitch(request) {
127
126
  }
128
127
 
129
128
  const url = window.URL || window.webkitURL;
130
- const blobUrl = url.createObjectURL(blob);
131
- this.workerInstance = new Worker(blobUrl);
132
- return this.workerInstance;
129
+ const blobUrl = url.createObjectURL(blob); // this.workerInstance = new Worker(blobUrl);
130
+ // return this.workerInstance;
131
+
132
+ let worker = new Worker(blobUrl);
133
+ return worker;
133
134
  }
134
135
 
135
136
  return cb(null, `const workerObj ={\n