mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
With the new ESM version of `ng-dev`, the TypeScript config loading cannot happen automatically because `ts-node` cannot hook into the Node ESM module resolution at runtime. To fix this `ng-dev` is now loading a plain `.ng-dev/config.mjs` and the runtime just needs to be configured accordingly, i.e. running `ng-dev` with `ts-node` so that the ESM loader can be wired up before Node's runtime starts (using e.g. `node --loader`). PR Close #46437
15 lines
345 B
TypeScript
15 lines
345 B
TypeScript
import {caretaker} from './caretaker.mjs';
|
|
import {commitMessage} from './commit-message.mjs';
|
|
import {format} from './format.mjs';
|
|
import {github} from './github.mjs';
|
|
import {pullRequest} from './pull-request.mjs';
|
|
import {release} from './release.mjs';
|
|
|
|
export {
|
|
commitMessage,
|
|
format,
|
|
github,
|
|
pullRequest,
|
|
caretaker,
|
|
release,
|
|
};
|