mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 03:01:09 +08:00
29 lines
618 B
TypeScript
29 lines
618 B
TypeScript
import { program } from 'commander';
|
|
|
|
import { esMain } from './utils/esmain';
|
|
|
|
type RunOptions = {
|
|
template?: string;
|
|
};
|
|
|
|
// Get sandbox directory from template name
|
|
// replace '/' by a '-'
|
|
async function run({ template }: RunOptions) {
|
|
console.log(template.replace('/', '-'));
|
|
}
|
|
|
|
if (esMain(import.meta.url)) {
|
|
program
|
|
.description('Retrieve the sandbox directory for template name')
|
|
.option('--template <template>', 'Template name');
|
|
|
|
program.parse(process.argv);
|
|
|
|
const options = program.opts() as RunOptions;
|
|
|
|
run(options).catch((err) => {
|
|
console.error(err);
|
|
process.exit(1);
|
|
});
|
|
}
|