atom.io 0.30.3 → 0.30.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "atom.io",
3
- "version": "0.30.3",
3
+ "version": "0.30.4",
4
4
  "description": "Composable and testable reactive data library.",
5
5
  "homepage": "https://atom.io.fyi",
6
6
  "sideEffects": false,
@@ -59,17 +59,17 @@
59
59
  "@types/npmlog": "7.0.0",
60
60
  "@types/react": "18.3.12",
61
61
  "@types/tmp": "0.2.6",
62
- "@typescript-eslint/parser": "8.14.0",
63
- "@typescript-eslint/rule-tester": "8.14.0",
62
+ "@typescript-eslint/parser": "8.15.0",
63
+ "@typescript-eslint/rule-tester": "8.15.0",
64
64
  "@vitest/coverage-v8": "2.1.5",
65
65
  "@vitest/ui": "2.1.5",
66
66
  "concurrently": "9.1.0",
67
- "drizzle-kit": "0.28.0",
68
- "drizzle-orm": "0.36.1",
69
- "eslint": "9.14.0",
70
- "happy-dom": "15.11.4",
67
+ "drizzle-kit": "0.28.1",
68
+ "drizzle-orm": "0.36.3",
69
+ "eslint": "9.15.0",
70
+ "happy-dom": "15.11.6",
71
71
  "http-proxy": "1.18.1",
72
- "motion": "11.11.15",
72
+ "motion": "11.11.17",
73
73
  "npmlog": "7.0.1",
74
74
  "postgres": "3.4.5",
75
75
  "preact": "10.24.3",
@@ -83,7 +83,7 @@
83
83
  "tsx": "4.19.2",
84
84
  "typescript": "5.6.3",
85
85
  "vite": "5.4.11",
86
- "vite-tsconfig-paths": "5.1.2",
86
+ "vite-tsconfig-paths": "5.1.3",
87
87
  "vitest": "2.1.5",
88
88
  "zod": "3.23.8"
89
89
  },
@@ -82,7 +82,7 @@ var ChildSocket = class extends CustomSocket {
82
82
  `data`,
83
83
  (buffer) => {
84
84
  const chunk = buffer.toString();
85
- if (chunk === `\u2728`) {
85
+ if (chunk === `ALIVE`) {
86
86
  return;
87
87
  }
88
88
  this.unprocessedEvents.push(...chunk.split(``));
@@ -302,7 +302,7 @@ var ParentSocket = class extends CustomSocket {
302
302
  this.relays.delete(username);
303
303
  }
304
304
  });
305
- process.stdout.write(`\u2728`);
305
+ process.stdout.write(`ALIVE`);
306
306
  }
307
307
  relay(attachServices) {
308
308
  this.logger.info(`\u{1F517}`, `running relay method`);
@@ -325,7 +325,7 @@ var roomSelectors = selectorFamily({
325
325
  (resolve) => {
326
326
  const room = spawn(script, options, { env: process.env });
327
327
  const resolver = (data) => {
328
- if (data.toString() === `\u2728`) {
328
+ if (data.toString() === `ALIVE`) {
329
329
  room.stdout.off(`data`, resolver);
330
330
  resolve(room);
331
331
  }
@@ -65,7 +65,7 @@ export class ChildSocket<
65
65
  <Event extends keyof I>(buffer: EventBuffer<string, I[Event]>) => {
66
66
  const chunk = buffer.toString()
67
67
 
68
- if (chunk === `✨`) {
68
+ if (chunk === `ALIVE`) {
69
69
  // console.log(chunk)
70
70
  return
71
71
  }
@@ -180,7 +180,7 @@ export class ParentSocket<
180
180
  }
181
181
  })
182
182
 
183
- process.stdout.write(`✨`)
183
+ process.stdout.write(`ALIVE`)
184
184
  }
185
185
 
186
186
  public relay(
@@ -30,7 +30,7 @@ export const roomSelectors = selectorFamily<
30
30
  (resolve) => {
31
31
  const room = spawn(script, options, { env: process.env })
32
32
  const resolver = (data: Buffer) => {
33
- if (data.toString() === `✨`) {
33
+ if (data.toString() === `ALIVE`) {
34
34
  room.stdout.off(`data`, resolver)
35
35
  resolve(room)
36
36
  }