mirror of
https://github.com/zebrajr/react.git
synced 2025-12-06 12:20:20 +01:00
* Migrate prepare-release-from-ci to new workflow I added a `--releaseChannel (-r)` argument to script. You must choose either "stable" or "experimental", because every build job now includes both channels. The prepare-release-from-npm script is unchanged since those releases are downloaded from npm, nt CI. (As a side note, I think we should start preparing semver releases using the prepare-release-from-ci script, too, and get rid of prepare-release-from-npm. I think that was a neat idea originally but because we already run `npm pack` before storing the artifacts in CI, there's really not much additional safety; the only safeguard it adds is the requirement that a "next" release must have already been published.) * Move validation to parse-params module
41 lines
871 B
JavaScript
41 lines
871 B
JavaScript
#!/usr/bin/env node
|
|
|
|
'use strict';
|
|
|
|
const commandLineArgs = require('command-line-args');
|
|
|
|
const paramDefinitions = [
|
|
{
|
|
name: 'build',
|
|
type: Number,
|
|
description:
|
|
'Circle CI build identifier (e.g. https://circleci.com/gh/facebook/react/<build>)',
|
|
},
|
|
{
|
|
name: 'skipTests',
|
|
type: Boolean,
|
|
description: 'Skip automated fixture tests.',
|
|
defaultValue: false,
|
|
},
|
|
{
|
|
name: 'releaseChannel',
|
|
alias: 'r',
|
|
type: String,
|
|
description: 'Release channel (stable or experimental)',
|
|
},
|
|
];
|
|
|
|
module.exports = () => {
|
|
const params = commandLineArgs(paramDefinitions);
|
|
|
|
const channel = params.releaseChannel;
|
|
if (channel !== 'experimental' && channel !== 'stable') {
|
|
console.error(
|
|
`Invalid release channel (-r) "${channel}". Must be "stable" or "experimental".`
|
|
);
|
|
process.exit(1);
|
|
}
|
|
|
|
return params;
|
|
};
|