9dccaa9570
We initially added logic for determining active release trains into the merge script. Given we now build more tools that rely on this information, we move the logic into a more general "versioning" folder that can contain common logic following the versioning document for the Angular organization. PR Close #38656
14 lines
383 B
TypeScript
14 lines
383 B
TypeScript
/**
|
|
* @license
|
|
* Copyright Google LLC All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
* found in the LICENSE file at https://angular.io/license
|
|
*/
|
|
|
|
export * from './active-release-trains';
|
|
export * from './release-trains';
|
|
export * from './long-term-support';
|
|
export * from './version-branches';
|
|
export * from './npm-registry';
|