You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Each package has a build script, but this scripts currently fail with the error command not found: ts-bridge.
The top-level build command still works, but on a per-package level the ts-bridge binary is not present. We should fix this by adding ts-bridge to devDependencies for all packages. The package would still get hoisted so that we only have one instance, but this would ensure ts-brigge gets listed in node_modules/.bin for all packages so that it can be invoked by package npm scripts.
The text was updated successfully, but these errors were encountered:
Each package has a
build
script, but this scripts currently fail with the errorcommand not found: ts-bridge
.The top-level build command still works, but on a per-package level the
ts-bridge
binary is not present. We should fix this by addingts-bridge
todevDependencies
for all packages. The package would still get hoisted so that we only have one instance, but this would ensurets-brigge
gets listed innode_modules/.bin
for all packages so that it can be invoked by package npm scripts.The text was updated successfully, but these errors were encountered: