@runtypelabs/react-flow 0.3.55 → 0.3.57
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 +4 -4
- package/CHANGELOG.md +16 -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 +4 -4
- 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.57 build /home/runner/_work/core/core/packages/react-flow
|
|
3
3
|
> tsup
|
|
4
4
|
|
|
5
5
|
[34mCLI[39m Building entry: src/index.ts
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
[34mCLI[39m Cleaning output folder
|
|
11
11
|
[34mCJS[39m Build start
|
|
12
12
|
[34mESM[39m Build start
|
|
13
|
-
[32mESM[39m [1mdist/index.mjs [22m[32m101.50 KB[39m
|
|
14
|
-
[32mESM[39m ⚡️ Build success in 347ms
|
|
15
13
|
[32mCJS[39m [1mdist/index.js [22m[32m105.55 KB[39m
|
|
16
|
-
[32mCJS[39m ⚡️ Build success in
|
|
14
|
+
[32mCJS[39m ⚡️ Build success in 368ms
|
|
15
|
+
[32mESM[39m [1mdist/index.mjs [22m[32m101.50 KB[39m
|
|
16
|
+
[32mESM[39m ⚡️ Build success in 368ms
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @runtypelabs/react-flow
|
|
2
2
|
|
|
3
|
+
## 0.3.57
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 346f947: Run workspace type-checking on the TypeScript 7 native compiler (`tsgo`, from `@typescript/native-preview`). The per-package `typecheck` / `type-check` scripts now invoke `tsgo --noEmit` instead of `tsc --noEmit` (~5x faster across the workspace). This is a type-check-only change: `typescript` stays pinned at `^6.0.3` for builds, lint, and codegen — whose compiler-API consumers (tsup `.d.ts` emit, typescript-eslint, ts-morph) are not stable on the 7.x API until ~7.1 — so no package's runtime behavior or emitted types change. The `typecheck:native` benchmark harness is updated to stay version-agnostic (it derives the `tsc` baseline for `--compare`), `@typescript/native-preview` is bumped to the latest tracked build, and the orphaned `@runtypelabs/system-product-generator` package's stray `typescript@^5.9.3` pin is aligned to `^6.0.3`.
|
|
8
|
+
- Updated dependencies [346f947]
|
|
9
|
+
- @runtypelabs/sdk@5.2.3
|
|
10
|
+
|
|
11
|
+
## 0.3.56
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- 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.
|
|
16
|
+
|
|
17
|
+
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`.
|
|
18
|
+
|
|
3
19
|
## 0.3.55
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
package/example/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @runtypelabs/react-flow-example
|
|
2
2
|
|
|
3
|
+
## 0.0.105
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [346f947]
|
|
8
|
+
- @runtypelabs/sdk@5.2.3
|
|
9
|
+
- @runtypelabs/react-flow@0.3.57
|
|
10
|
+
|
|
11
|
+
## 0.0.104
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- Updated dependencies [ba0a50b]
|
|
16
|
+
- @runtypelabs/react-flow@0.3.56
|
|
17
|
+
|
|
3
18
|
## 0.0.103
|
|
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.105",
|
|
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.57",
|
|
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.3"
|
|
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",
|
|
@@ -59,6 +59,6 @@
|
|
|
59
59
|
"build": "tsup",
|
|
60
60
|
"dev": "tsup --watch",
|
|
61
61
|
"clean": "rm -rf dist",
|
|
62
|
-
"typecheck": "
|
|
62
|
+
"typecheck": "tsgo --noEmit --skipLibCheck"
|
|
63
63
|
}
|
|
64
64
|
}
|
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"]
|