@cyph/sdk
Version:
Cyph SDK
20 lines (15 loc) • 506 B
JavaScript
import {getMeta} from '../../modules/base.js';
const {__dirname} = getMeta(import.meta);
import {program} from 'commander';
import path from 'path';
program
.name('websign')
.description('Use WebSign service.')
.command('deploy', 'deploy new release', {
executableFile: path.join(__dirname, 'deploy.js')
})
.command('internal', 'additional helpers for non-standard scenarios', {
executableFile: path.join(__dirname, 'internal', 'index.js')
});
await program.parseAsync();