Skip to content

Commit 158f4ec

Browse files
committed
add types publishing
1 parent 3b9b224 commit 158f4ec

File tree

5 files changed

+50
-10
lines changed

5 files changed

+50
-10
lines changed

release/core/publish/index.ts

+2
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ import { CHANNEL, SEMVER_VERSION } from '../../utils/channel';
1414
import { confirmCommitChangelogs } from '../release-notes/steps/confirm-changelogs';
1515
import { updateChangelogs } from '../release-notes/steps/update-changelogs';
1616
import { getChanges } from '../release-notes/steps/get-changes';
17+
import { generateTypesTarballs } from './steps/generate-types-tarballs';
1718

1819
export async function executePublish(args: string[]) {
1920
// get user supplied config
@@ -72,6 +73,7 @@ export async function executePublish(args: string[]) {
7273
if (config.full.get('pack')) {
7374
await generatePackageTarballs(config.full, packages, applied.public_pks);
7475
await generateMirrorTarballs(config.full, packages, applied.public_pks);
76+
await generateTypesTarballs(config.full, packages, applied.public_pks);
7577
} else {
7678
console.log(`Skipped Pack`);
7779
}

release/core/publish/steps/generate-mirror-tarballs.ts

+8-3
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import { Glob } from 'bun';
44
import { exec } from '../../../utils/cmd';
55
import path from 'path';
66
import fs from 'fs';
7+
import { APPLIED_STRATEGY, Package } from '../../../utils/package';
78

89
export async function generateMirrorTarballs(
910
config: Map<string, string | number | boolean | null>,
@@ -73,10 +74,14 @@ export async function generateMirrorTarballs(
7374
await Bun.write(fullPath, newContents);
7475
}
7576

76-
// pack a new tarball into the tarballs directory
77-
await exec(`tar -czf ${mirrorTarballPath} -C ${unpackedDir} .`);
77+
// pack the new package and put it in the tarballs directory
78+
const result = await exec({
79+
cwd: unpackedDir,
80+
cmd: `npm pack --pack-destination=${tarballDir}`,
81+
condense: false,
82+
});
83+
console.log(result);
7884

79-
// add the tarball path to the package object
8085
pkg.mirrorTarballPath = mirrorTarballPath;
8186
}
8287
}

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

+6-6
Original file line numberDiff line numberDiff line change
@@ -83,27 +83,27 @@ export async function generatePackageTarballs(
8383
async function fixVersionsInPackageJson(pkg: Package) {
8484
if (pkg.pkgData.dependencies) {
8585
Object.keys(pkg.pkgData.dependencies).forEach((dep) => {
86-
const version = pkg.pkgData.dependencies[dep];
86+
const version = pkg.pkgData.dependencies![dep];
8787
if (version.startsWith('workspace:')) {
88-
pkg.pkgData.dependencies[dep] = version.replace('workspace:', '');
88+
pkg.pkgData.dependencies![dep] = version.replace('workspace:', '');
8989
}
9090
});
9191
}
9292

9393
if (pkg.pkgData.devDependencies) {
9494
Object.keys(pkg.pkgData.devDependencies).forEach((dep) => {
95-
const version = pkg.pkgData.devDependencies[dep];
95+
const version = pkg.pkgData.devDependencies![dep];
9696
if (version.startsWith('workspace:')) {
97-
pkg.pkgData.devDependencies[dep] = version.replace('workspace:', '');
97+
pkg.pkgData.devDependencies![dep] = version.replace('workspace:', '');
9898
}
9999
});
100100
}
101101

102102
if (pkg.pkgData.peerDependencies) {
103103
Object.keys(pkg.pkgData.peerDependencies).forEach((dep) => {
104-
const version = pkg.pkgData.peerDependencies[dep];
104+
const version = pkg.pkgData.peerDependencies![dep];
105105
if (version.startsWith('workspace:')) {
106-
pkg.pkgData.peerDependencies[dep] = version.replace('workspace:', '');
106+
pkg.pkgData.peerDependencies![dep] = version.replace('workspace:', '');
107107
}
108108
});
109109
}

release/core/publish/steps/publish-packages.ts

+23-1
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,34 @@ export async function publishPackages(
3838
}
3939
}
4040

41+
let publishCount = 0;
4142
for (const [, strat] of strategy) {
4243
const pkg = packages.get(strat.name)!;
4344
token = await publishPackage(config, strat.distTag, pkg.tarballPath, config.get('dry_run') as boolean, token);
45+
publishCount++;
46+
if (strat.mirrorPublish) {
47+
token = await publishPackage(
48+
config,
49+
strat.distTag,
50+
pkg.mirrorTarballPath,
51+
config.get('dry_run') as boolean,
52+
token
53+
);
54+
publishCount++;
55+
}
56+
if (strat.typesPublish) {
57+
token = await publishPackage(
58+
config,
59+
strat.distTag,
60+
pkg.typesTarballPath,
61+
config.get('dry_run') as boolean,
62+
token
63+
);
64+
publishCount++;
65+
}
4466
}
4567

46-
console.log(`✅ ` + chalk.cyan(`published ${chalk.greenBright(strategy.size)} 📦 packages to npm`));
68+
console.log(`✅ ` + chalk.cyan(`published ${chalk.greenBright(publishCount)} 📦 packages to npm`));
4769
}
4870

4971
export async function getOTPToken(config: Map<string, string | number | boolean | null>, reprompt?: boolean) {

release/utils/package.ts

+11
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,16 @@ export class Package {
77
declare file: JSONFile<PACKAGEJSON>;
88
declare pkgData: PACKAGEJSON;
99
declare tarballPath: string;
10+
declare mirrorTarballPath: string;
11+
declare typesTarballPath: string;
1012

1113
constructor(filePath: string, file: JSONFile<PACKAGEJSON>, pkgData: PACKAGEJSON) {
1214
this.filePath = filePath;
1315
this.file = file;
1416
this.pkgData = pkgData;
1517
this.tarballPath = '';
18+
this.mirrorTarballPath = '';
19+
this.typesTarballPath = '';
1620
}
1721

1822
async refresh() {
@@ -60,6 +64,13 @@ export type PACKAGEJSON = {
6064
type?: 'addon';
6165
version?: 1 | 2;
6266
};
67+
author?: string;
68+
license?: string;
69+
repository?: {
70+
type: string;
71+
url: string;
72+
directory?: string;
73+
};
6374
};
6475

6576
export type APPLIED_STRATEGY = {

0 commit comments

Comments
 (0)