Publish all packages to npm on release
Summary: Publish all the public packages (excluding those with "private=true") included as workspaces to "desktop" project. Reviewed By: jknoxville Differential Revision: D20765097 fbshipit-source-id: 444541e9a682a90eba02cb3da85ada9bd00d93d0
This commit is contained in:
committed by
Facebook GitHub Bot
parent
eb9a2cb5e7
commit
bf32297ad9
28
desktop/scripts/bump-versions.ts
Normal file
28
desktop/scripts/bump-versions.ts
Normal file
@@ -0,0 +1,28 @@
|
||||
/**
|
||||
* Copyright (c) Facebook, Inc. and its affiliates.
|
||||
*
|
||||
* This source code is licensed under the MIT license found in the
|
||||
* LICENSE file in the root directory of this source tree.
|
||||
*
|
||||
* @format
|
||||
*/
|
||||
|
||||
import {bumpVersions} from './workspaces';
|
||||
import yargs from 'yargs';
|
||||
|
||||
const argv = yargs
|
||||
.usage('$0 [args]')
|
||||
.options({
|
||||
newVersion: {key: 'new-version', alias: 'v', type: 'string'},
|
||||
})
|
||||
.help().argv;
|
||||
|
||||
bumpVersions(argv)
|
||||
.then((version) => {
|
||||
console.log(`Versions bumped to ${version}`);
|
||||
process.exit(0);
|
||||
})
|
||||
.catch((err: any) => {
|
||||
console.error(err);
|
||||
process.exit(1);
|
||||
});
|
||||
@@ -1,67 +0,0 @@
|
||||
/**
|
||||
* Copyright (c) Facebook, Inc. and its affiliates.
|
||||
*
|
||||
* This source code is licensed under the MIT license found in the
|
||||
* LICENSE file in the root directory of this source tree.
|
||||
*
|
||||
* @format
|
||||
*/
|
||||
|
||||
import {rootDir, pluginsDir} from './paths';
|
||||
import fs from 'fs-extra';
|
||||
import path from 'path';
|
||||
import {promisify} from 'util';
|
||||
import globImport from 'glob';
|
||||
import pfilter from 'p-filter';
|
||||
import pmap from 'p-map';
|
||||
const glob = promisify(globImport);
|
||||
|
||||
const lastArg = process.argv[process.argv.length - 1];
|
||||
const version =
|
||||
lastArg === __filename ? undefined : process.argv[process.argv.length - 1];
|
||||
|
||||
bump(version)
|
||||
.then(() => process.exit(0))
|
||||
.catch((err) => {
|
||||
console.error(err);
|
||||
process.exit(1);
|
||||
});
|
||||
|
||||
async function bump(version?: string) {
|
||||
const rootPackageJson = await fs.readJson(path.join(rootDir, 'package.json'));
|
||||
version = version || (rootPackageJson.version as string);
|
||||
const packageGlobs = rootPackageJson.workspaces.packages as string[];
|
||||
const localPackages = await pmap(
|
||||
await pfilter(
|
||||
([] as string[]).concat(
|
||||
...(await pmap(packageGlobs, (pattern) =>
|
||||
glob(path.join(rootDir, pattern, '')),
|
||||
)),
|
||||
),
|
||||
async (dir) =>
|
||||
!dir.startsWith(pluginsDir) &&
|
||||
(await fs.pathExists(path.join(dir, 'package.json'))),
|
||||
),
|
||||
async (dir) => {
|
||||
const json = await fs.readJson(path.join(dir, 'package.json'));
|
||||
return {
|
||||
dir,
|
||||
json,
|
||||
};
|
||||
},
|
||||
);
|
||||
const localPackageNames = localPackages.map(({json}) => json.name as string);
|
||||
for (const {dir, json} of localPackages) {
|
||||
json.version = version;
|
||||
if (json.dependencies) {
|
||||
for (const localPackageName of localPackageNames) {
|
||||
if (json.dependencies[localPackageName] !== undefined) {
|
||||
json.dependencies[localPackageName] = version;
|
||||
}
|
||||
}
|
||||
}
|
||||
await fs.writeJson(path.join(dir, 'package.json'), json, {
|
||||
spaces: 2,
|
||||
});
|
||||
}
|
||||
}
|
||||
26
desktop/scripts/publish-packages.ts
Normal file
26
desktop/scripts/publish-packages.ts
Normal file
@@ -0,0 +1,26 @@
|
||||
/**
|
||||
* Copyright (c) Facebook, Inc. and its affiliates.
|
||||
*
|
||||
* This source code is licensed under the MIT license found in the
|
||||
* LICENSE file in the root directory of this source tree.
|
||||
*
|
||||
* @format
|
||||
*/
|
||||
|
||||
import {publishPackages} from './workspaces';
|
||||
import yargs from 'yargs';
|
||||
|
||||
const argv = yargs
|
||||
.usage('$0 [args]')
|
||||
.options({
|
||||
newVersion: {key: 'new-version', alias: 'v', type: 'string'},
|
||||
proxy: {key: 'proxy', alias: 'p', type: 'string'},
|
||||
})
|
||||
.help().argv;
|
||||
|
||||
publishPackages(argv)
|
||||
.then(() => process.exit(0))
|
||||
.catch((err: any) => {
|
||||
console.error(err);
|
||||
process.exit(1);
|
||||
});
|
||||
123
desktop/scripts/workspaces.ts
Normal file
123
desktop/scripts/workspaces.ts
Normal file
@@ -0,0 +1,123 @@
|
||||
/**
|
||||
* Copyright (c) Facebook, Inc. and its affiliates.
|
||||
*
|
||||
* This source code is licensed under the MIT license found in the
|
||||
* LICENSE file in the root directory of this source tree.
|
||||
*
|
||||
* @format
|
||||
*/
|
||||
|
||||
import {rootDir, pluginsDir} from './paths';
|
||||
import fs from 'fs-extra';
|
||||
import path from 'path';
|
||||
import {promisify} from 'util';
|
||||
import globImport from 'glob';
|
||||
import pfilter from 'p-filter';
|
||||
import pmap from 'p-map';
|
||||
import {execSync} from 'child_process';
|
||||
const glob = promisify(globImport);
|
||||
|
||||
export interface Package {
|
||||
dir: string;
|
||||
json: any;
|
||||
}
|
||||
|
||||
export interface Workspaces {
|
||||
rootPackage: Package;
|
||||
packages: Package[];
|
||||
}
|
||||
|
||||
export async function getWorkspaces(): Promise<Workspaces> {
|
||||
const rootPackageJson = await fs.readJson(path.join(rootDir, 'package.json'));
|
||||
const packageGlobs = rootPackageJson.workspaces.packages as string[];
|
||||
const packages = await pmap(
|
||||
await pfilter(
|
||||
([] as string[]).concat(
|
||||
...(await pmap(packageGlobs, (pattern) =>
|
||||
glob(path.join(rootDir, pattern, '')),
|
||||
)),
|
||||
),
|
||||
async (dir) =>
|
||||
!dir.startsWith(pluginsDir) &&
|
||||
(await fs.pathExists(path.join(dir, 'package.json'))),
|
||||
),
|
||||
async (dir) => {
|
||||
const json = await fs.readJson(path.join(dir, 'package.json'));
|
||||
return {
|
||||
dir,
|
||||
json,
|
||||
};
|
||||
},
|
||||
);
|
||||
return {
|
||||
rootPackage: {
|
||||
dir: rootDir,
|
||||
json: rootPackageJson,
|
||||
},
|
||||
packages,
|
||||
};
|
||||
}
|
||||
|
||||
export async function bumpVersions({newVersion}: {newVersion?: string}) {
|
||||
return await bumpWorkspaceVersions(await getWorkspaces(), newVersion);
|
||||
}
|
||||
|
||||
async function savePackageJson({dir, json}: Package) {
|
||||
await fs.writeJson(path.join(dir, 'package.json'), json, {
|
||||
spaces: 2,
|
||||
});
|
||||
}
|
||||
|
||||
async function bumpWorkspaceVersions(
|
||||
{rootPackage, packages}: Workspaces,
|
||||
newVersion?: string,
|
||||
): Promise<string> {
|
||||
newVersion = newVersion || (rootPackage.json.version as string);
|
||||
if (rootPackage.json.version !== newVersion) {
|
||||
rootPackage.json.version = newVersion;
|
||||
await savePackageJson(rootPackage);
|
||||
}
|
||||
const localPackageNames = packages.map(({json}) => json.name as string);
|
||||
for (const pkg of packages) {
|
||||
const json = pkg.json;
|
||||
let changed = false;
|
||||
if (json.version !== newVersion) {
|
||||
json.version = newVersion;
|
||||
changed = true;
|
||||
}
|
||||
if (json.dependencies) {
|
||||
for (const localPackageName of localPackageNames) {
|
||||
if (
|
||||
json.dependencies[localPackageName] !== undefined &&
|
||||
json.dependencies[localPackageName] !== newVersion
|
||||
) {
|
||||
json.dependencies[localPackageName] = newVersion;
|
||||
changed = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
if (changed) {
|
||||
await savePackageJson(pkg);
|
||||
}
|
||||
}
|
||||
return newVersion;
|
||||
}
|
||||
|
||||
export async function publishPackages({
|
||||
newVersion,
|
||||
proxy,
|
||||
}: {
|
||||
newVersion?: string;
|
||||
proxy?: string;
|
||||
}) {
|
||||
const workspaces = await getWorkspaces();
|
||||
const version = await bumpWorkspaceVersions(workspaces, newVersion);
|
||||
let cmd = `yarn publish --new-version ${version}`;
|
||||
if (proxy) {
|
||||
cmd += ` --http-proxy ${proxy} --https-proxy ${proxy}`;
|
||||
}
|
||||
const publicPackages = workspaces.packages.filter((pkg) => !pkg.json.private);
|
||||
for (const pkg of publicPackages) {
|
||||
execSync(cmd, {cwd: pkg.dir, stdio: 'inherit'});
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user