@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.
@@ -14,7 +14,7 @@ export const shortAsciiLogo = `
14
14
  ░ ░ ▒ ░ ░ ░ ░
15
15
  ░ ░ ░ ░ ░ ░ ░ ░
16
16
 
17
- @machina.ai/cell-cli@1.49.0-rc5
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-rc5
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-rc5
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-rc5
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-rc5
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-rc5
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-rc5',
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-rc5',
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 () => {