@isograph/react 0.0.0-main-350dcec2 → 0.0.0-main-e51d1c3a
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/.turbo/turbo-compile-libs.log +2 -2
- package/package.json +4 -4
- package/vitest.config.ts +10 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
../.. | WARN Unsupported engine: wanted: {"node":"22.9.0"} (current: {"node":"v22.
|
|
1
|
+
../.. | WARN Unsupported engine: wanted: {"node":"22.9.0"} (current: {"node":"v22.20.0","pnpm":"10.15.0"})
|
|
2
2
|
|
|
3
|
-
> @isograph/react@0.0.0-main-
|
|
3
|
+
> @isograph/react@0.0.0-main-e51d1c3a compile-libs /home/runner/work/isograph/isograph/libs/isograph-react
|
|
4
4
|
> rimraf dist && tsc -p tsconfig.pkg.json
|
|
5
5
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@isograph/react",
|
|
3
|
-
"version": "0.0.0-main-
|
|
3
|
+
"version": "0.0.0-main-e51d1c3a",
|
|
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": "cross-env ISO_PRINT_ABSOLUTE_FILEPATH=1 ../../target/debug/isograph_cli --config ./isograph.config.json"
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@isograph/disposable-types": "0.0.0-main-
|
|
23
|
-
"@isograph/react-disposable-state": "0.0.0-main-
|
|
24
|
-
"@isograph/reference-counted-pointer": "0.0.0-main-
|
|
22
|
+
"@isograph/disposable-types": "0.0.0-main-e51d1c3a",
|
|
23
|
+
"@isograph/react-disposable-state": "0.0.0-main-e51d1c3a",
|
|
24
|
+
"@isograph/reference-counted-pointer": "0.0.0-main-e51d1c3a"
|
|
25
25
|
},
|
|
26
26
|
"peerDependencies": {
|
|
27
27
|
"react": "^18.0.0 || ^19.0.0"
|
package/vitest.config.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import path from 'node:path';
|
|
1
2
|
import babel from 'vite-plugin-babel';
|
|
2
3
|
import commonjs from 'vite-plugin-commonjs';
|
|
3
4
|
import { defineProject } from 'vitest/config';
|
|
@@ -8,7 +9,15 @@ export default defineProject({
|
|
|
8
9
|
filter: /\.[jt]sx?$/,
|
|
9
10
|
babelConfig: {
|
|
10
11
|
presets: ['@babel/preset-typescript'],
|
|
11
|
-
plugins: [
|
|
12
|
+
plugins: [
|
|
13
|
+
[
|
|
14
|
+
path.join(
|
|
15
|
+
__dirname,
|
|
16
|
+
'../isograph-babel-plugin/BabelPluginIsograph',
|
|
17
|
+
),
|
|
18
|
+
{ searchFrom: __dirname },
|
|
19
|
+
],
|
|
20
|
+
],
|
|
12
21
|
},
|
|
13
22
|
}),
|
|
14
23
|
commonjs({
|