|
1 |
| -<<<<<<< Updated upstream |
2 |
| -import { getFile } from '../../../utils/json-file'; |
3 |
| -import { GIT_STATE } from '../../../utils/git'; |
4 |
| -import { STRATEGY_TYPE, CHANNEL, npmDistTagForChannelAndVersion, TYPE_STRATEGY } from '../../../utils/channel'; |
5 |
| -import { Glob } from 'bun'; |
6 |
| -import { APPLIED_STRATEGY, PACKAGEJSON, Package } from '../../../utils/package'; |
7 |
| -======= |
8 | 1 | import { GIT_STATE } from '../../../utils/git';
|
9 | 2 | import { CHANNEL, npmDistTagForChannelAndVersion } from '../../../utils/channel';
|
10 | 3 |
|
11 | 4 | import { APPLIED_STRATEGY, Package, STRATEGY } from '../../../utils/package';
|
12 |
| ->>>>>>> Stashed changes |
13 | 5 | import { getNextVersion } from '../../utils/next-version';
|
14 | 6 | import path from 'path';
|
15 | 7 |
|
16 | 8 | const PROJECT_ROOT = process.cwd();
|
17 | 9 |
|
18 |
| -<<<<<<< Updated upstream |
19 |
| -export interface STRATEGY { |
20 |
| - config: { |
21 |
| - packageRoots: string[]; |
22 |
| - }; |
23 |
| - defaults: { |
24 |
| - stage: STRATEGY_TYPE; |
25 |
| - types: TYPE_STRATEGY; |
26 |
| - }; |
27 |
| - rules: Record< |
28 |
| - string, |
29 |
| - { |
30 |
| - stage: STRATEGY_TYPE; |
31 |
| - types: TYPE_STRATEGY; |
32 |
| - } |
33 |
| - >; |
34 |
| -} |
35 |
| - |
36 |
| -function buildGlob(dirPath: string) { |
37 |
| - return `${dirPath}/package.json`; |
38 |
| -} |
39 |
| - |
40 |
| -export async function gatherPackages(config: STRATEGY['config'], cwd: string = process.cwd()) { |
41 |
| - const packages: Map<string, Package> = new Map(); |
42 |
| - |
43 |
| - // add root |
44 |
| - const rootFilePath = `${cwd}/package.json`; |
45 |
| - const rootFile = getFile<PACKAGEJSON>(rootFilePath); |
46 |
| - const rootPkgData = await rootFile.read(); |
47 |
| - packages.set('root', new Package(rootFilePath, rootFile, rootPkgData)); |
48 |
| - |
49 |
| - // add other packages |
50 |
| - for (const dirPath of config.packageRoots) { |
51 |
| - const glob = new Glob(buildGlob(dirPath)); |
52 |
| - |
53 |
| - // Scans the current working directory and each of its sub-directories recursively |
54 |
| - for await (const filePath of glob.scan(cwd)) { |
55 |
| - const file = getFile<PACKAGEJSON>(filePath); |
56 |
| - const pkgData = await file.read(); |
57 |
| - packages.set(pkgData.name, new Package(filePath, file, pkgData)); |
58 |
| - } |
59 |
| - } |
60 |
| - |
61 |
| - return packages; |
62 |
| -} |
63 |
| - |
64 |
| -export async function loadStrategy() { |
65 |
| - const file = getFile<STRATEGY>(`${PROJECT_ROOT}/release/strategy.json`); |
66 |
| - const data = await file.read(); |
67 |
| - return data; |
68 |
| -} |
69 |
| - |
70 |
| -======= |
71 |
| ->>>>>>> Stashed changes |
72 | 10 | function sortByName(map: Map<string, { name: string }>) {
|
73 | 11 | const sorted = [...map.values()];
|
74 | 12 | sorted.sort((a, b) => {
|
|
0 commit comments