@trackunit/react-core-contexts-test 1.12.55-alpha-ae1ff73fc64.0 → 1.12.55

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/index.cjs2.js CHANGED
@@ -13405,7 +13405,7 @@ const defaultOptions = {
13405
13405
  * This is a wrapper around the MockedProvider that logs errors to the console.
13406
13406
  */
13407
13407
  function ApolloMockedProviderWithError(props) {
13408
- const isDebugging = !!process.env.VSCODE_INSPECTOR_OPTIONS || !!process.env.DEBUG;
13408
+ const isDebugging = typeof globalThis.process !== "undefined" && (!!globalThis.process.env.VSCODE_INSPECTOR_OPTIONS || !!globalThis.process.env.DEBUG);
13409
13409
  dev.loadDevMessages();
13410
13410
  dev.loadErrorMessages();
13411
13411
  const { mocks, ...otherProps } = props;
package/index.esm2.js CHANGED
@@ -13383,7 +13383,7 @@ const defaultOptions = {
13383
13383
  * This is a wrapper around the MockedProvider that logs errors to the console.
13384
13384
  */
13385
13385
  function ApolloMockedProviderWithError(props) {
13386
- const isDebugging = !!process.env.VSCODE_INSPECTOR_OPTIONS || !!process.env.DEBUG;
13386
+ const isDebugging = typeof globalThis.process !== "undefined" && (!!globalThis.process.env.VSCODE_INSPECTOR_OPTIONS || !!globalThis.process.env.DEBUG);
13387
13387
  loadDevMessages();
13388
13388
  loadErrorMessages();
13389
13389
  const { mocks, ...otherProps } = props;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trackunit/react-core-contexts-test",
3
- "version": "1.12.55-alpha-ae1ff73fc64.0",
3
+ "version": "1.12.55",
4
4
  "repository": "https://github.com/Trackunit/manager",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "engines": {
@@ -10,11 +10,11 @@
10
10
  "@apollo/client": "3.13.8",
11
11
  "react": "19.0.0",
12
12
  "@tanstack/react-router": "1.114.29",
13
- "@trackunit/shared-utils": "1.13.69-alpha-ae1ff73fc64.0",
13
+ "@trackunit/shared-utils": "1.13.68",
14
14
  "graphql": "^16.10.0",
15
15
  "@tanstack/router-core": "1.114.29",
16
- "@trackunit/iris-app-runtime-core-api": "1.12.52-alpha-ae1ff73fc64.0",
17
- "@trackunit/react-core-contexts-api": "1.13.52-alpha-ae1ff73fc64.0",
16
+ "@trackunit/iris-app-runtime-core-api": "1.12.51",
17
+ "@trackunit/react-core-contexts-api": "1.13.51",
18
18
  "es-toolkit": "^1.39.10"
19
19
  },
20
20
  "module": "./index.esm.js",