@runtypelabs/react-flow 0.3.54 → 0.3.56
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-build.log +3 -3
- package/CHANGELOG.md +15 -0
- package/example/CHANGELOG.md +15 -0
- package/example/node_modules/.bin/tsc +2 -2
- package/example/node_modules/.bin/tsserver +2 -2
- package/example/package.json +2 -2
- package/package.json +3 -3
- package/tsconfig.json +2 -2
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
> @runtypelabs/react-flow@0.3.
|
|
2
|
+
> @runtypelabs/react-flow@0.3.56 build /home/runner/_work/core/core/packages/react-flow
|
|
3
3
|
> tsup
|
|
4
4
|
|
|
5
5
|
[34mCLI[39m Building entry: src/index.ts
|
|
@@ -11,6 +11,6 @@
|
|
|
11
11
|
[34mCJS[39m Build start
|
|
12
12
|
[34mESM[39m Build start
|
|
13
13
|
[32mCJS[39m [1mdist/index.js [22m[32m105.55 KB[39m
|
|
14
|
-
[32mCJS[39m ⚡️ Build success in
|
|
14
|
+
[32mCJS[39m ⚡️ Build success in 317ms
|
|
15
15
|
[32mESM[39m [1mdist/index.mjs [22m[32m101.50 KB[39m
|
|
16
|
-
[32mESM[39m ⚡️ Build success in
|
|
16
|
+
[32mESM[39m ⚡️ Build success in 317ms
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @runtypelabs/react-flow
|
|
2
2
|
|
|
3
|
+
## 0.3.56
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- ba0a50b: Upgrade the workspace TypeScript toolchain from 5.9 to 6.0 (`^6.0.3`, the transitional release before the Go-native 7.0). This is a build and type-check toolchain change only: `typescript` is a devDependency and the edits are tsconfig-level, so no package's runtime behavior changes.
|
|
8
|
+
|
|
9
|
+
Config migrations required by 6.0: removed the deprecated `baseUrl` option (paths now resolve relative to the tsconfig), added `ignoreDeprecations: "6.0"` where tsup's DTS build injects a `baseUrl`, and set explicit `rootDir` / `types` where 6.0's new defaults (`types: []`, `noUncheckedSideEffectImports: true`) required it. typescript-eslint 8.61 already supports 6.0; build, typecheck, and lint are green. See `docs/typescript-6-upgrade.md`.
|
|
10
|
+
|
|
11
|
+
## 0.3.55
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- Updated dependencies [c09b0af]
|
|
16
|
+
- @runtypelabs/sdk@5.2.2
|
|
17
|
+
|
|
3
18
|
## 0.3.54
|
|
4
19
|
|
|
5
20
|
### Patch Changes
|
package/example/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @runtypelabs/react-flow-example
|
|
2
2
|
|
|
3
|
+
## 0.0.104
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [ba0a50b]
|
|
8
|
+
- @runtypelabs/react-flow@0.3.56
|
|
9
|
+
|
|
10
|
+
## 0.0.103
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies [c09b0af]
|
|
15
|
+
- @runtypelabs/sdk@5.2.2
|
|
16
|
+
- @runtypelabs/react-flow@0.3.55
|
|
17
|
+
|
|
3
18
|
## 0.0.102
|
|
4
19
|
|
|
5
20
|
### Patch Changes
|
|
@@ -10,9 +10,9 @@ case `uname` in
|
|
|
10
10
|
esac
|
|
11
11
|
|
|
12
12
|
if [ -z "$NODE_PATH" ]; then
|
|
13
|
-
export NODE_PATH="/home/runner/_work/core/core/node_modules/.pnpm/typescript@
|
|
13
|
+
export NODE_PATH="/home/runner/_work/core/core/node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/node_modules:/home/runner/_work/core/core/node_modules/.pnpm/typescript@6.0.3/node_modules:/home/runner/_work/core/core/node_modules/.pnpm/node_modules"
|
|
14
14
|
else
|
|
15
|
-
export NODE_PATH="/home/runner/_work/core/core/node_modules/.pnpm/typescript@
|
|
15
|
+
export NODE_PATH="/home/runner/_work/core/core/node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/node_modules:/home/runner/_work/core/core/node_modules/.pnpm/typescript@6.0.3/node_modules:/home/runner/_work/core/core/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
16
16
|
fi
|
|
17
17
|
if [ -x "$basedir/node" ]; then
|
|
18
18
|
exec "$basedir/node" "$basedir/../typescript/bin/tsc" "$@"
|
|
@@ -10,9 +10,9 @@ case `uname` in
|
|
|
10
10
|
esac
|
|
11
11
|
|
|
12
12
|
if [ -z "$NODE_PATH" ]; then
|
|
13
|
-
export NODE_PATH="/home/runner/_work/core/core/node_modules/.pnpm/typescript@
|
|
13
|
+
export NODE_PATH="/home/runner/_work/core/core/node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/node_modules:/home/runner/_work/core/core/node_modules/.pnpm/typescript@6.0.3/node_modules:/home/runner/_work/core/core/node_modules/.pnpm/node_modules"
|
|
14
14
|
else
|
|
15
|
-
export NODE_PATH="/home/runner/_work/core/core/node_modules/.pnpm/typescript@
|
|
15
|
+
export NODE_PATH="/home/runner/_work/core/core/node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/node_modules:/home/runner/_work/core/core/node_modules/.pnpm/typescript@6.0.3/node_modules:/home/runner/_work/core/core/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
16
16
|
fi
|
|
17
17
|
if [ -x "$basedir/node" ]; then
|
|
18
18
|
exec "$basedir/node" "$basedir/../typescript/bin/tsserver" "$@"
|
package/example/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@runtypelabs/react-flow-example",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.104",
|
|
4
4
|
"private": true,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"scripts": {
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"@types/react": "^19.2.14",
|
|
20
20
|
"@types/react-dom": "^18.3.0",
|
|
21
21
|
"@vitejs/plugin-react": "^5.2.0",
|
|
22
|
-
"typescript": "^
|
|
22
|
+
"typescript": "^6.0.3",
|
|
23
23
|
"vite": "^6.4.3"
|
|
24
24
|
}
|
|
25
25
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@runtypelabs/react-flow",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.56",
|
|
4
4
|
"description": "React Flow adapter for building visual flow editors with Runtype",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"*.css"
|
|
17
17
|
],
|
|
18
18
|
"dependencies": {
|
|
19
|
-
"@runtypelabs/sdk": "5.2.
|
|
19
|
+
"@runtypelabs/sdk": "5.2.2"
|
|
20
20
|
},
|
|
21
21
|
"peerDependencies": {
|
|
22
22
|
"@xyflow/react": "^12.0.0",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"react": "19.2.4",
|
|
31
31
|
"react-dom": "18.3.1",
|
|
32
32
|
"tsup": "^8.0.0",
|
|
33
|
-
"typescript": "^
|
|
33
|
+
"typescript": "^6.0.3"
|
|
34
34
|
},
|
|
35
35
|
"keywords": [
|
|
36
36
|
"runtype",
|
package/tsconfig.json
CHANGED
|
@@ -18,10 +18,10 @@
|
|
|
18
18
|
"declarationMap": true,
|
|
19
19
|
"sourceMap": false,
|
|
20
20
|
"jsx": "react-jsx",
|
|
21
|
-
"baseUrl": ".",
|
|
22
21
|
"paths": {
|
|
23
22
|
"@/*": ["./src/*"]
|
|
24
|
-
}
|
|
23
|
+
},
|
|
24
|
+
"ignoreDeprecations": "6.0"
|
|
25
25
|
},
|
|
26
26
|
"include": ["src/**/*"],
|
|
27
27
|
"exclude": ["dist", "node_modules", "**/*.test.ts", "**/*.test.tsx"]
|