index.ts
1 import type { Command } from '../../commands.js' 2 3 const releaseNotes: Command = { 4 description: 'View release notes', 5 name: 'release-notes', 6 type: 'local', 7 supportsNonInteractive: true, 8 load: () => import('./release-notes.js'), 9 } 10 11 export default releaseNotes