mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 04:21:07 +08:00
37 lines
1.2 KiB
TypeScript
37 lines
1.2 KiB
TypeScript
import { setOutput } from '@actions/core';
|
|
import { program } from 'commander';
|
|
import picocolors from 'picocolors';
|
|
|
|
import { esMain } from '../utils/esmain';
|
|
import { getCurrentVersion } from './get-current-version';
|
|
import { getChanges } from './utils/get-changes';
|
|
|
|
program
|
|
.name('get-version-changelog')
|
|
.description(
|
|
'get changelog for specific version. If no version argument specified it will use the current version in code/package.json'
|
|
)
|
|
.arguments('[version]')
|
|
.option('-V, --verbose', 'Enable verbose logging', false);
|
|
|
|
export const getVersionChangelog = async (args: { version?: string; verbose?: boolean }) => {
|
|
const version = args.version || (await getCurrentVersion());
|
|
|
|
console.log(`📝 Getting changelog for version ${picocolors.blue(version)}`);
|
|
|
|
const { changelogText } = await getChanges({ from: version, version, verbose: args.verbose });
|
|
|
|
if (process.env.GITHUB_ACTIONS === 'true') {
|
|
setOutput('changelog', changelogText);
|
|
}
|
|
return changelogText;
|
|
};
|
|
|
|
if (esMain(import.meta.url)) {
|
|
const parsed = program.parse();
|
|
getVersionChangelog({ version: parsed.args[0], verbose: parsed.opts().verbose }).catch((err) => {
|
|
console.error(err);
|
|
process.exit(1);
|
|
});
|
|
}
|