mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
aa616db24f
Previously, dev-infra only bundled the CLI with all its dependencies, while we still also kept all bundled dependencies in the `dependencies`. This basically meant that the CLI bundling did not provide any value at all. We fixed this upstream and now dependencies are still bundled, but no longer also declared as `dependencies`. We also stopped shipping deep JS files, only shipping the bundles now. As part of this deep file removal, we introduced a runtime entry-point for exports/types. This one will also benefit from the bundling and it will be predictable what symbols dev-infra consumer projects rely on (allowing us to also have an API guard or something in the future). PR Close #45239
21 lines
543 B
TypeScript
21 lines
543 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"`,
|
|
},
|
|
{
|
|
name: 'Initial Triage Queue',
|
|
query: `is:open no:milestone`,
|
|
},
|
|
],
|
|
caretakerGroup: 'angular-caretaker',
|
|
};
|