@machina.ai/cell-cli 1.49.0-rc5 → 1.49.0-rc6
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/package.json +3 -3
- package/dist/src/acp/acpSession.test.js +5 -1
- package/dist/src/acp/acpSession.test.js.map +1 -1
- package/dist/src/config/config.js +15 -2
- package/dist/src/config/config.js.map +1 -1
- package/dist/src/config/config.test.js +2 -2
- package/dist/src/config/config.test.js.map +1 -1
- package/dist/src/config/settings.d.ts +4 -0
- package/dist/src/config/settings.js +73 -1
- package/dist/src/config/settings.js.map +1 -1
- package/dist/src/config/settings.test.js +161 -16
- package/dist/src/config/settings.test.js.map +1 -1
- package/dist/src/generated/git-commit.d.ts +2 -2
- package/dist/src/generated/git-commit.js +2 -2
- package/dist/src/ui/components/AsciiArt.d.ts +6 -6
- package/dist/src/ui/components/AsciiArt.js +6 -6
- package/dist/src/utils/handleAutoUpdate.test.js +2 -2
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +3 -3
|
@@ -14,7 +14,7 @@ export const shortAsciiLogo = `
|
|
|
14
14
|
░ ░ ▒ ░ ░ ░ ░
|
|
15
15
|
░ ░ ░ ░ ░ ░ ░ ░
|
|
16
16
|
░
|
|
17
|
-
@machina.ai/cell-cli@1.49.0-
|
|
17
|
+
@machina.ai/cell-cli@1.49.0-rc6
|
|
18
18
|
`;
|
|
19
19
|
export const longAsciiLogo = `
|
|
20
20
|
░███ ░██
|
|
@@ -29,7 +29,7 @@ export const longAsciiLogo = `
|
|
|
29
29
|
░ ░ ▒ ░ ░ ░ ░
|
|
30
30
|
░ ░ ░ ░ ░ ░ ░ ░
|
|
31
31
|
░
|
|
32
|
-
@machina.ai/cell-cli@1.49.0-
|
|
32
|
+
@machina.ai/cell-cli@1.49.0-rc6
|
|
33
33
|
`;
|
|
34
34
|
export const tinyAsciiLogo = `
|
|
35
35
|
███╗ ██╗██╗ ██╗ ██████╗
|
|
@@ -38,7 +38,7 @@ export const tinyAsciiLogo = `
|
|
|
38
38
|
██║╚██╗██║╚██╗ ██╔╝██║
|
|
39
39
|
██║ ╚████║ ╚████╔╝ ╚██████╗
|
|
40
40
|
╚═╝ ╚═══╝ ╚═══╝ ╚═════╝
|
|
41
|
-
@machina.ai/cell-cli@1.49.0-
|
|
41
|
+
@machina.ai/cell-cli@1.49.0-rc6
|
|
42
42
|
`;
|
|
43
43
|
export const shortAsciiLogoIde = `
|
|
44
44
|
▄████▄▄ ▄▄▄▄▄▄▄▄ ██▓ ██▓
|
|
@@ -51,7 +51,7 @@ export const shortAsciiLogoIde = `
|
|
|
51
51
|
░ ░ ▒ ░ ░ ░ ░
|
|
52
52
|
░ ░ ░ ░ ░ ░ ░ ░
|
|
53
53
|
░
|
|
54
|
-
@machina.ai/cell-cli@1.49.0-
|
|
54
|
+
@machina.ai/cell-cli@1.49.0-rc6
|
|
55
55
|
`;
|
|
56
56
|
export const longAsciiLogoIde = `
|
|
57
57
|
░███ ░██
|
|
@@ -66,7 +66,7 @@ export const longAsciiLogoIde = `
|
|
|
66
66
|
░ ░ ▒ ░ ░ ░ ░
|
|
67
67
|
░ ░ ░ ░ ░ ░ ░ ░
|
|
68
68
|
░
|
|
69
|
-
@machina.ai/cell-cli@1.49.0-
|
|
69
|
+
@machina.ai/cell-cli@1.49.0-rc6
|
|
70
70
|
`;
|
|
71
71
|
export const tinyAsciiLogoIde = `
|
|
72
72
|
███╗ ██╗██╗ ██╗ ██████╗
|
|
@@ -75,7 +75,7 @@ export const tinyAsciiLogoIde = `
|
|
|
75
75
|
██║╚██╗██║╚██╗ ██╔╝██║
|
|
76
76
|
██║ ╚████║ ╚████╔╝ ╚██████╗
|
|
77
77
|
╚═╝ ╚═══╝ ╚═══╝ ╚═════╝
|
|
78
|
-
@machina.ai/cell-cli@1.49.0-
|
|
78
|
+
@machina.ai/cell-cli@1.49.0-rc6
|
|
79
79
|
`;
|
|
80
80
|
export const shortAsciiLogoCompactText = `
|
|
81
81
|
██▙ ▜█▘
|
|
@@ -209,7 +209,7 @@ describe('handleAutoUpdate', () => {
|
|
|
209
209
|
...mockUpdateInfo,
|
|
210
210
|
update: {
|
|
211
211
|
...mockUpdateInfo.update,
|
|
212
|
-
latest: '1.49.0-
|
|
212
|
+
latest: '1.49.0-rc6',
|
|
213
213
|
},
|
|
214
214
|
};
|
|
215
215
|
await new Promise((resolve) => {
|
|
@@ -227,7 +227,7 @@ describe('handleAutoUpdate', () => {
|
|
|
227
227
|
handleAutoUpdate(mockUpdateInfo, mockSettings, '/root', false, mockSpawn);
|
|
228
228
|
});
|
|
229
229
|
expect(updateEventEmitter.emit).toHaveBeenCalledWith('update-failed', {
|
|
230
|
-
message: 'Automatic update failed. Please try updating manually:\n\nnpm i -g @machina.ai/cell-cli@1.49.0-
|
|
230
|
+
message: 'Automatic update failed. Please try updating manually:\n\nnpm i -g @machina.ai/cell-cli@1.49.0-rc6',
|
|
231
231
|
});
|
|
232
232
|
});
|
|
233
233
|
it('should emit "update-failed" when the spawn function throws an error', async () => {
|