@isograph/react 0.0.0-main-1ee228e6 → 0.0.0-main-72f66445

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": "@isograph/react",
3
- "version": "0.0.0-main-1ee228e6",
3
+ "version": "0.0.0-main-72f66445",
4
4
  "description": "Use Isograph with React",
5
5
  "homepage": "https://isograph.dev",
6
6
  "main": "dist/index.js",
@@ -19,9 +19,9 @@
19
19
  "iso-watch": "../../target/debug/isograph_cli --config ./isograph.config.json --watch"
20
20
  },
21
21
  "dependencies": {
22
- "@isograph/disposable-types": "0.0.0-main-1ee228e6",
23
- "@isograph/react-disposable-state": "0.0.0-main-1ee228e6",
24
- "@isograph/reference-counted-pointer": "0.0.0-main-1ee228e6"
22
+ "@isograph/disposable-types": "0.0.0-main-72f66445",
23
+ "@isograph/react-disposable-state": "0.0.0-main-72f66445",
24
+ "@isograph/reference-counted-pointer": "0.0.0-main-72f66445"
25
25
  },
26
26
  "peerDependencies": {
27
27
  "react": "18.3.1"
@@ -95,5 +95,6 @@ export function iso(_isographLiteralText: string):
95
95
  {
96
96
  throw new Error('iso: Unexpected invocation at runtime. Either the Babel transform ' +
97
97
  'was not set up, or it failed to identify this call site. Make sure it ' +
98
- 'is being used verbatim as `iso`.');
98
+ 'is being used verbatim as `iso`. If you cannot use the babel transform, ' +
99
+ 'set options.no_babel_transform to true in your Isograph config. ');
99
100
  }