@signaltree/guardrails 8.0.1 → 9.0.0

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.
@@ -34,7 +34,7 @@ function tryStructuredClone(value) {
34
34
  }
35
35
  }
36
36
  function isDevEnvironment() {
37
- if (__DEV__ !== undefined) return __DEV__;
37
+ if (typeof __DEV__ !== 'undefined') return __DEV__;
38
38
  if (process?.env?.['NODE_ENV'] === 'production') return false;
39
39
  if (ngDevMode != null) return Boolean(ngDevMode);
40
40
  return true;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@signaltree/guardrails",
3
- "version": "8.0.1",
3
+ "version": "9.0.0",
4
4
  "description": "Development guardrails for SignalTree reactive JSON. Performance monitoring and anti-pattern detection.",
5
5
  "type": "module",
6
6
  "sideEffects": false,
@@ -57,14 +57,14 @@
57
57
  "type-check": "tsc --project tsconfig.lib.json --noEmit"
58
58
  },
59
59
  "peerDependencies": {
60
- "@signaltree/core": "^8.0.0",
60
+ "@signaltree/core": "^9.0.0",
61
61
  "@signaltree/shared": "^7.1.0",
62
62
  "tslib": "^2.0.0"
63
63
  },
64
64
  "peerDependenciesMeta": {},
65
65
  "devDependencies": {
66
- "@signaltree/core": "workspace:*",
67
- "@signaltree/shared": "workspace:*"
66
+ "@signaltree/core": "^9.0.0",
67
+ "@signaltree/shared": "^9.0.0"
68
68
  },
69
69
  "keywords": [
70
70
  "signaltree",