mirror of
https://gitverse.ru/anarchic/claude-code
synced 2026-05-19 16:41:01 +00:00
11 lines
268 B
TypeScript
11 lines
268 B
TypeScript
import type { Command } from '../../commands.js'
|
|
|
|
const releaseNotes: Command = {
|
|
description: 'View release notes',
|
|
name: 'release-notes',
|
|
type: 'local',
|
|
supportsNonInteractive: true,
|
|
load: () => import('./release-notes.js'),
|
|
}
|
|
|
|
export default releaseNotes
|