mirror of
https://github.com/angular/angular-cli.git
synced 2025-06-01 10:46:14 +08:00
The `ng-dev` tool is now strict ESM. Config loading needs to be updated to also emit `.mjs` with `ts-node` (this cannot happen dynamically as ESM Node loading cannot be patched by ts-node at runtime).
17 lines
463 B
TypeScript
17 lines
463 B
TypeScript
import { CaretakerConfig } from '@angular/dev-infra-private/ng-dev';
|
|
|
|
/** The configuration for `ng-dev caretaker` commands. */
|
|
export const caretaker: CaretakerConfig = {
|
|
githubQueries: [
|
|
{
|
|
name: 'Merge Queue',
|
|
query: `is:pr is:open status:success label:"action: merge"`,
|
|
},
|
|
{
|
|
name: 'Merge Assistance Queue',
|
|
query: `is:pr is:open label:"action: merge-assistance"`,
|
|
},
|
|
],
|
|
caretakerGroup: 'angular-cli-caretaker',
|
|
};
|