@open-wa/wa-automate 4.34.3 → 4.34.4
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/dist/cli/index.js
CHANGED
|
@@ -183,7 +183,7 @@ function start() {
|
|
|
183
183
|
spinner.succeed(`Port ${PORT} is now free.`);
|
|
184
184
|
server_1.server.listen(PORT, () => __awaiter(this, void 0, void 0, function* () {
|
|
185
185
|
spinner.succeed(`\n• Listening on port ${PORT}!`);
|
|
186
|
-
|
|
186
|
+
(0, index_1.processSendData)({ port: PORT });
|
|
187
187
|
yield ready(Object.assign(Object.assign(Object.assign(Object.assign({}, cliConfig), createConfig), client.getSessionInfo()), { hostAccountNumber: yield client.getHostNumber() }));
|
|
188
188
|
}));
|
|
189
189
|
process.on('message', function (data) {
|
|
@@ -191,7 +191,7 @@ function start() {
|
|
|
191
191
|
return __awaiter(this, void 0, void 0, function* () {
|
|
192
192
|
if (((_a = data === null || data === void 0 ? void 0 : data.data) === null || _a === void 0 ? void 0 : _a.command) === "port_report") {
|
|
193
193
|
const response = { port: PORT };
|
|
194
|
-
|
|
194
|
+
(0, index_1.processSendData)(response);
|
|
195
195
|
return response;
|
|
196
196
|
}
|
|
197
197
|
});
|
|
@@ -490,7 +490,7 @@ function getWAPage(browser) {
|
|
|
490
490
|
* @internal
|
|
491
491
|
*/
|
|
492
492
|
const kill = (p, b, exit, pid, reason = "LAUNCH_KILL") => __awaiter(void 0, void 0, void 0, function* () {
|
|
493
|
-
|
|
493
|
+
(0, tools_1.processSendData)({
|
|
494
494
|
reason
|
|
495
495
|
});
|
|
496
496
|
(0, tools_1.timeout)(3000);
|
|
@@ -111,7 +111,7 @@ function popup(config) {
|
|
|
111
111
|
});
|
|
112
112
|
});
|
|
113
113
|
server.listen(PORT);
|
|
114
|
-
|
|
114
|
+
(0, tools_1.processSendData)({ port: PORT });
|
|
115
115
|
const os = (0, os_name_1.default)();
|
|
116
116
|
const appName = os.includes('macOS') ? 'google chrome' : os.includes('Windows') ? 'chrome' : 'google-chrome';
|
|
117
117
|
const hasChrome = yield (0, command_exists_1.default)(appName).then(() => true).catch(() => false);
|
package/dist/utils/tools.d.ts
CHANGED
|
@@ -67,7 +67,7 @@ export declare function timePromise(fn: () => Promise<any>): Promise<string>;
|
|
|
67
67
|
* @param {any} data - The data to be sent to the parent process.
|
|
68
68
|
* @returns Nothing.
|
|
69
69
|
*/
|
|
70
|
-
export declare const processSendData: (data?: any) =>
|
|
70
|
+
export declare const processSendData: (data?: any) => boolean;
|
|
71
71
|
/**
|
|
72
72
|
* It generates a link to the GitHub issue template for the current session
|
|
73
73
|
* @param {ConfigObject} config - the config object
|
package/dist/utils/tools.js
CHANGED
|
@@ -211,21 +211,20 @@ exports.timePromise = timePromise;
|
|
|
211
211
|
* @param {any} data - The data to be sent to the parent process.
|
|
212
212
|
* @returns Nothing.
|
|
213
213
|
*/
|
|
214
|
-
const processSendData = (data = {}) =>
|
|
215
|
-
const sd = (
|
|
214
|
+
const processSendData = (data = {}) => {
|
|
215
|
+
const sd = () => process.send({
|
|
216
216
|
type: 'process:msg',
|
|
217
217
|
data
|
|
218
218
|
}, (error) => {
|
|
219
219
|
if (error) {
|
|
220
220
|
console.error(error);
|
|
221
|
-
reject(error);
|
|
222
221
|
}
|
|
223
|
-
resolve(true);
|
|
224
222
|
});
|
|
225
|
-
return
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
})
|
|
223
|
+
return sd();
|
|
224
|
+
// return await new Promise((resolve, reject)=>{
|
|
225
|
+
// sd(resolve,reject)
|
|
226
|
+
// })
|
|
227
|
+
};
|
|
229
228
|
exports.processSendData = processSendData;
|
|
230
229
|
/**
|
|
231
230
|
* It generates a link to the GitHub issue template for the current session
|
package/package.json
CHANGED