forked from angular/angular-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrelease.ts
More file actions
23 lines (20 loc) · 697 Bytes
/
release.ts
File metadata and controls
23 lines (20 loc) · 697 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import '../lib/bootstrap-local';
import { ReleaseConfig } from '@angular/dev-infra-private/ng-dev/release/config';
import { releasePackages } from '../lib/packages';
import buildPackages from '../scripts/build';
const npmPackages = Object.keys(releasePackages);
/** Configuration for the `ng-dev release` command. */
export const release: ReleaseConfig = {
npmPackages,
buildPackages: () => buildPackages(),
releaseNotes: {
groupOrder: [
'@angular/cli',
'@schematics/angular',
'@angular-devkit/architect-cli',
'@angular-devkit/schematics-cli',
],
},
publishRegistry: 'https://wombat-dressing-room.appspot.com',
releasePrLabels: ['action: merge'],
};