this.me 2.2.6 → 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 -11
- package/package.json +2 -1
package/electron.js
ADDED
package/main.js
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
const { exec } = require("child_process");
|
|
3
|
-
const PixelGrid = require('this.pixels');
|
|
4
3
|
console.log(`
|
|
5
4
|
___________
|
|
6
5
|
[------------]
|
|
@@ -16,15 +15,6 @@ console.log(`
|
|
|
16
15
|
[---------------------------------.me-----------]
|
|
17
16
|
-^^^^^^^^zzzz...
|
|
18
17
|
Welcome to .me - Your AI Playground
|
|
18
|
+
give me one sec please...
|
|
19
19
|
`);
|
|
20
20
|
|
|
21
|
-
const command = "electron atom.js";
|
|
22
|
-
|
|
23
|
-
exec(command, (error, stdout, stderr) => {
|
|
24
|
-
if (error) {
|
|
25
|
-
console.error(`Could not start Electron: ${error}`);
|
|
26
|
-
return;
|
|
27
|
-
}
|
|
28
|
-
console.log(`stdout: ${stdout}`);
|
|
29
|
-
console.error(`stderr: ${stderr}`);
|
|
30
|
-
});
|
package/package.json
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "this.me",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.8",
|
|
4
4
|
"description": "CLI for managing the .me suite.",
|
|
5
5
|
"bin": {
|
|
6
6
|
".me": "./main.js"
|
|
7
7
|
},
|
|
8
8
|
"main": "main.js",
|
|
9
9
|
"scripts": {
|
|
10
|
+
"start": "node main.js",
|
|
10
11
|
"test": "test"
|
|
11
12
|
},
|
|
12
13
|
"keywords": [
|