atom.io 0.43.0 → 0.43.1

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.43.0",
3
+ "version": "0.43.1",
4
4
  "description": "Composable and testable reactive data library.",
5
5
  "homepage": "https://atom.io.fyi",
6
6
  "sideEffects": false,
@@ -61,9 +61,9 @@
61
61
  },
62
62
  "devDependencies": {
63
63
  "@eslint/core": "0.16.0",
64
- "@storybook/addon-docs": "9.1.10",
65
- "@storybook/addon-onboarding": "9.1.10",
66
- "@storybook/react-vite": "9.1.10",
64
+ "@storybook/addon-docs": "9.1.13",
65
+ "@storybook/addon-onboarding": "9.1.13",
66
+ "@storybook/react-vite": "9.1.13",
67
67
  "@testing-library/react": "16.3.0",
68
68
  "@types/bun": "npm:bun-types@1.3.0",
69
69
  "@types/eslint": "9.6.1",
@@ -75,14 +75,14 @@
75
75
  "@typescript-eslint/parser": "8.46.1",
76
76
  "@typescript-eslint/rule-tester": "8.46.1",
77
77
  "@typescript-eslint/utils": "8.46.1",
78
- "@typescript/native-preview": "7.0.0-dev.20251014.1",
78
+ "@typescript/native-preview": "7.0.0-dev.20251018.1",
79
79
  "@vitest/coverage-v8": "3.2.4",
80
80
  "@vitest/ui": "3.2.4",
81
81
  "concurrently": "9.2.1",
82
82
  "drizzle-kit": "0.31.5",
83
83
  "drizzle-orm": "0.44.6",
84
84
  "eslint": "9.37.0",
85
- "happy-dom": "20.0.0",
85
+ "happy-dom": "20.0.5",
86
86
  "http-proxy": "1.18.1",
87
87
  "motion": "12.23.24",
88
88
  "npmlog": "7.0.1",
@@ -95,7 +95,7 @@
95
95
  "recoverage": "0.1.11",
96
96
  "socket.io": "4.8.1",
97
97
  "socket.io-client": "4.8.1",
98
- "storybook": "9.1.10",
98
+ "storybook": "9.1.13",
99
99
  "tmp": "0.2.5",
100
100
  "tsdown": "0.15.7",
101
101
  "typescript": "5.9.3",
@@ -271,7 +271,7 @@ export const IMPLICIT: { readonly STORE: RootStore } = {
271
271
  globalThis.ATOM_IO_IMPLICIT_STORE ??= new Store({
272
272
  name: `IMPLICIT_STORE`,
273
273
  lifespan: `ephemeral`,
274
- isProduction: process?.env?.[`NODE_ENV`] === `production`,
274
+ isProduction: globalThis.process?.env?.[`NODE_ENV`] === `production`,
275
275
  }) as RootStore
276
276
  return globalThis.ATOM_IO_IMPLICIT_STORE
277
277
  },