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
ci: fix slack notification script failing due to missing ts-node (#25062)
TS node is no longer automatically registering in the `ng-dev` tool, so
the config cannot be loaded anymore. Callers of `getConfig()` are
required to manually wire up TS-Node, mostly now because ESM ts-node
**cannot** be registered at runtime anymore. So, the fix here is to
either run the slack notify script with `node --loader ts-node/esm` or
just run it using `ts-node` directly, while writing it in TS.
The latter one seems the most reasonable.
(cherry picked from commit 7f5bff7)
0 commit comments