this.me 2.2.7 → 2.2.8
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/electron.js +10 -0
- package/main.js +1 -10
- package/package.json +1 -1
package/electron.js
ADDED
package/main.js
CHANGED
|
@@ -15,15 +15,6 @@ console.log(`
|
|
|
15
15
|
[---------------------------------.me-----------]
|
|
16
16
|
-^^^^^^^^zzzz...
|
|
17
17
|
Welcome to .me - Your AI Playground
|
|
18
|
+
give me one sec please...
|
|
18
19
|
`);
|
|
19
20
|
|
|
20
|
-
const command = "electron atom.js";
|
|
21
|
-
|
|
22
|
-
exec(command, (error, stdout, stderr) => {
|
|
23
|
-
if (error) {
|
|
24
|
-
console.error(`Could not start Electron: ${error}`);
|
|
25
|
-
return;
|
|
26
|
-
}
|
|
27
|
-
console.log(`stdout: ${stdout}`);
|
|
28
|
-
console.error(`stderr: ${stderr}`);
|
|
29
|
-
});
|