I upgraded typia from 13.1.1 to 13.2.0, ttsc and @ttsc/unplugin from 0.19.2 to 0.20.0. The build step never completes (it has been running 30 minutes and I finally killed it). Node version v26.5.0.
I tried upgrading just typia or just ttsc suite independently. They both result in the forever build. For now I'm sticking with the 0.19 unplugin, and the 13.1.1 typia.
npm install ttsc@latest @ttsc/unplugin@latest @ttsc/graph@latest typia@latest
[ .. output skipped ]
[lappy]% npm run typecheck
npm notice run [email protected] typecheck
npm notice run react-router typegen && ttsc --noEmit
ttsc: building source plugin "typia" from /Users/vivek/Work/makemedia/makemedia-app/node_modules/typia/native/cmd/ttsc-typia (this runs once per cache key and can take several minutes on a cold Go cache) See https://ttsc.dev/docs/ttsc/compile#plugin-cache to persist it across builds.
[lappy]% npm run typecheck
npm notice run [email protected] typecheck
npm notice run react-router typegen && ttsc --noEmit
[lappy]% npm run build
npm notice run [email protected] build
npm notice run react-router build
Using Vite Environment API
vite v8.1.5 building client environment for production...
load: 5.31 cmd: node 20489 running 1.13u 1.25s
load: 5.44 cmd: node 20489 running 100.66u 377.74s
load: 6.03 cmd: node 20489 running 128.87u 484.31s
load: 5.39 cmd: node 20489 running 166.09u 619.48s
load: 4.55 cmd: node 20489 running 185.90u 689.69s
load: 5.99 cmd: node 20489 running 237.74u 882.93s
load: 4.75 cmd: node 20489 running 253.44u 942.37s
load: 6.93 cmd: node 20489 running 307.98u 1141.14s
load: 7.06 cmd: node 20489 running 349.43u 1295.37s
load: 5.95 cmd: node 20489 running 406.98u 1515.07s
^Cload: 4.48 cmd: node 20489 running 437.71u 1632.87s
load: 5.53 cmd: node 20489 running 501.91u 1869.50s
^\zsh: quit npm run build
[lappy]%
the "load" lines are from the "status" signal sent from the shell via CTRL-T on macOS. The "s" number is system CPU seconds consumed, not total time but in this case they are basically equal. Note that sending a regular kill CTRL-C did not stop it, I had to hard kill it with a quit signal.
As you can see, the first run of the type check ran the build on typia. The second run completed almost instantly, and shows that the cache was used. When the build step runs it doesn't seem like it will ever finish. I'm on a MacBook Air M2.
I also deleted node_modules and ran it again. It looks like it is stuck the same way again.
I upgraded typia from 13.1.1 to 13.2.0, ttsc and @ttsc/unplugin from 0.19.2 to 0.20.0. The build step never completes (it has been running 30 minutes and I finally killed it). Node version v26.5.0.
I tried upgrading just typia or just ttsc suite independently. They both result in the forever build. For now I'm sticking with the 0.19 unplugin, and the 13.1.1 typia.
the "load" lines are from the "status" signal sent from the shell via CTRL-T on macOS. The "s" number is system CPU seconds consumed, not total time but in this case they are basically equal. Note that sending a regular kill CTRL-C did not stop it, I had to hard kill it with a quit signal.
As you can see, the first run of the type check ran the build on typia. The second run completed almost instantly, and shows that the cache was used. When the build step runs it doesn't seem like it will ever finish. I'm on a MacBook Air M2.
I also deleted
node_modulesand ran it again. It looks like it is stuck the same way again.