Skip to content

Commit a9e8d5f

Browse files
committed
fixes
1 parent 829a9a6 commit a9e8d5f

File tree

5 files changed

+0
-101
lines changed

5 files changed

+0
-101
lines changed

release/core/promote/index.ts

-14
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,19 @@
11
import { promote_flags_config } from '../../utils/flags-config';
22
import { parseRawFlags } from '../../utils/parse-args';
3-
<<<<<<< Updated upstream
4-
import { getGitState } from '../../utils/git';
5-
import { printHelpDocs } from '../../help/docs';
6-
=======
73
import { GIT_TAG, getAllPackagesForGitTag, getGitState } from '../../utils/git';
84
import { printHelpDocs } from '../../help/docs';
95
import { Package } from '../../utils/package';
106
import { SEMVER_VERSION } from '../../utils/channel';
11-
>>>>>>> Stashed changes
127

138
export async function promoteToLTS(args: string[]) {
149
// get user supplied config
1510
const config = await parseRawFlags(args.slice(1), promote_flags_config);
16-
<<<<<<< Updated upstream
17-
=======
1811
const gitTag: GIT_TAG = `v${config.full.get('version') as SEMVER_VERSION}`;
19-
>>>>>>> Stashed changes
2012

2113
if (config.full.get('help')) {
2214
return printHelpDocs(args);
2315
}
2416

25-
<<<<<<< Updated upstream
26-
const dryRun = config.full.get('dry_run') as boolean;
27-
28-
console.log(config.full);
29-
=======
3017
const packages = await getAllPackagesForGitTag(gitTag);
3118
const versionsToPromote = getPublicPackageVersions(packages);
3219
const dryRun = config.full.get('dry_run') as boolean;
@@ -44,5 +31,4 @@ export async function getPublicPackageVersions(packages: Map<string, Package>):
4431
}
4532
});
4633
return publicPackages;
47-
>>>>>>> Stashed changes
4834
}

release/core/publish/index.ts

-6
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,10 @@ import { printHelpDocs } from '../../help/docs';
55
import { bumpAllPackages, restorePackagesForDryRun } from './steps/bump-versions';
66
import { generatePackageTarballs } from './steps/generate-tarballs';
77
import { printStrategy } from './steps/print-strategy';
8-
<<<<<<< Updated upstream
9-
import { applyStrategy, gatherPackages, loadStrategy } from './steps/generate-strategy';
10-
import { confirmStrategy } from './steps/confirm-strategy';
11-
import { publishPackages } from './steps/publish-packages';
12-
=======
138
import { applyStrategy } from './steps/generate-strategy';
149
import { confirmStrategy } from './steps/confirm-strategy';
1510
import { publishPackages } from './steps/publish-packages';
1611
import { gatherPackages, loadStrategy } from '../../utils/package';
17-
>>>>>>> Stashed changes
1812

1913
export async function executePublish(args: string[]) {
2014
// get user supplied config

release/core/publish/steps/generate-strategy.ts

-62
Original file line numberDiff line numberDiff line change
@@ -1,74 +1,12 @@
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-
=======
81
import { GIT_STATE } from '../../../utils/git';
92
import { CHANNEL, npmDistTagForChannelAndVersion } from '../../../utils/channel';
103

114
import { APPLIED_STRATEGY, Package, STRATEGY } from '../../../utils/package';
12-
>>>>>>> Stashed changes
135
import { getNextVersion } from '../../utils/next-version';
146
import path from 'path';
157

168
const PROJECT_ROOT = process.cwd();
179

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
7210
function sortByName(map: Map<string, { name: string }>) {
7311
const sorted = [...map.values()];
7412
sorted.sort((a, b) => {

release/utils/git.ts

-11
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,8 @@ import chalk from 'chalk';
22
import { branchForChannelAndVersion, CHANNEL, channelForBranch, SEMVER_VERSION, VALID_BRANCHES } from './channel';
33
import { getFile } from './json-file';
44
import { exec } from './cmd';
5-
<<<<<<< Updated upstream
6-
=======
75
import { gatherPackages, loadStrategy, Package } from './package';
86
import path from 'path';
9-
>>>>>>> Stashed changes
107

118
export type LTS_TAG = `lts-${number}-${number}`;
129
export type RELEASE_TAG = `release-${number}-${number}`;
@@ -156,19 +153,11 @@ export async function getGitState(options: Map<string, boolean | string | number
156153
return _GIT_STATE;
157154
}
158155

159-
<<<<<<< Updated upstream
160-
export async function getAllPackagesForGitTag(tag: GIT_TAG): Promise<string[]> {
161-
await exec(['mkdir', '-p', `./tmp/${tag}`]);
162-
await exec({ cmd: ['git', 'checkout', tag], env: { ...process.env, GIT_WORK_TREE: `./tmp/${tag}` } });
163-
const info = JSON.parse(gitInfo) as Record<string, unknown>;
164-
return info.versions[tag] as string[];
165-
=======
166156
export async function getAllPackagesForGitTag(tag: GIT_TAG): Promise<Map<string, Package>> {
167157
await exec(['mkdir', '-p', `./tmp/${tag}`]);
168158
await exec({ cmd: ['git', 'checkout', tag], env: { ...process.env, GIT_WORK_TREE: `./tmp/${tag}` } });
169159

170160
const tmpDir = path.join(process.cwd(), `./tmp/${tag}`);
171161
const strategy = await loadStrategy(tmpDir);
172162
return gatherPackages(strategy.config, tmpDir);
173-
>>>>>>> Stashed changes
174163
}

release/utils/package.ts

-8
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,6 @@
1-
<<<<<<< Updated upstream
2-
import { JSONFile } from './json-file';
3-
import { NPM_DIST_TAG, SEMVER_VERSION, STRATEGY_TYPE, TYPE_STRATEGY } from './channel';
4-
=======
51
import { JSONFile, getFile } from './json-file';
62
import { NPM_DIST_TAG, SEMVER_VERSION, STRATEGY_TYPE, TYPE_STRATEGY } from './channel';
73
import { Glob } from 'bun';
8-
>>>>>>> Stashed changes
94

105
export class Package {
116
declare filePath: string;
@@ -72,8 +67,6 @@ export type APPLIED_STRATEGY = {
7267
distTag: NPM_DIST_TAG;
7368
pkgDir: string;
7469
};
75-
<<<<<<< Updated upstream
76-
=======
7770

7871
export interface STRATEGY {
7972
config: {
@@ -125,4 +118,3 @@ export async function loadStrategy(cwd: string = process.cwd()) {
125118
const data = await file.read();
126119
return data;
127120
}
128-
>>>>>>> Stashed changes

0 commit comments

Comments
 (0)