mirror of
https://github.com/zebrajr/react.git
synced 2025-12-07 00:20:28 +01:00
* First chunk of new release script * Re-ordered build steps to combine error codes and releases * Reorganized build files; added stub publish script * First pass at publis script. Also collect and print dry-run commits/publish commands. * Deleted old react-release-manager scripts * Cleaned up release package.json * Basic README instructions * Removed unnecessary 'async' keyword from a method * Wordsmithing * Tweaked README * Renamed build -> build-commands and publish -> publish-commands to avoid conflict with .gitignore * Bump pre-release package versions differently * Prettier * Improved CircleCI API token setup instructions message * Lint fix * Typofix
25 lines
600 B
JavaScript
25 lines
600 B
JavaScript
#!/usr/bin/env node
|
|
|
|
'use strict';
|
|
|
|
const chalk = require('chalk');
|
|
const {existsSync} = require('fs');
|
|
const {readJson} = require('fs-extra');
|
|
const {join} = require('path');
|
|
|
|
module.exports = async ({cwd, version}) => {
|
|
const packagePath = join(cwd, 'build', 'packages', 'react', 'package.json');
|
|
|
|
if (!existsSync(packagePath)) {
|
|
throw Error('No build found');
|
|
}
|
|
|
|
const packageJson = await readJson(packagePath);
|
|
|
|
if (packageJson.version !== version) {
|
|
throw Error(
|
|
chalk`Expected version {bold.white ${version}} but found {bold.white ${packageJson.version}}`
|
|
);
|
|
}
|
|
};
|