mirror of https://github.com/abpframework/abp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
1.4 KiB
55 lines
1.4 KiB
import execa from 'execa';
|
|
import fse from 'fs-extra';
|
|
|
|
const publish = async () => {
|
|
const versions = ['major', 'minor', 'patch', 'premajor', 'preminor', 'prepatch', 'prerelease'];
|
|
let nextSemanticVersion = (process.argv[2] || '').toLowerCase();
|
|
|
|
try {
|
|
await execa('yarn', ['install-new-dependencies'], { stdout: 'inherit' });
|
|
|
|
await fse.rename('../lerna.version.json', '../lerna.json');
|
|
|
|
await execa(
|
|
'yarn',
|
|
['lerna', 'version', nextSemanticVersion, '--yes', '--no-commit-hooks', '--skip-git'],
|
|
{ stdout: 'inherit', cwd: '../' },
|
|
);
|
|
|
|
await fse.rename('../lerna.json', '../lerna.version.json');
|
|
|
|
await execa('yarn', ['build', '--noInstall'], { stdout: 'inherit' });
|
|
|
|
await fse.rename('../lerna.publish.json', '../lerna.json');
|
|
|
|
await fse.remove('../dist/dev-app');
|
|
|
|
await execa(
|
|
'yarn',
|
|
['lerna', 'exec', '--', '"npm publish --registry https://registry.npmjs.org"'],
|
|
{
|
|
stdout: 'inherit',
|
|
cwd: '../',
|
|
},
|
|
);
|
|
|
|
await fse.rename('../lerna.json', '../lerna.publish.json');
|
|
|
|
await execa('git', ['add', '../packages/*', '../package.json', '../lerna.version.json'], {
|
|
stdout: 'inherit',
|
|
});
|
|
await execa('git', ['commit', '-m', 'Upgrade ng package versions', '--no-verify'], {
|
|
stdout: 'inherit',
|
|
});
|
|
} catch (error) {
|
|
console.error(error.stderr);
|
|
process.exit(1);
|
|
}
|
|
|
|
process.exit(0);
|
|
};
|
|
|
|
publish();
|
|
|
|
export default publish;
|