We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b781f0 commit e758807Copy full SHA for e758807
src/cli/commands/log.ts
@@ -1,6 +1,6 @@
1
import Command, { flags } from '@oclif/command'
2
import { inspect } from 'util'
3
-import * as ChangeLog from '../../lib/changelog/data'
+import * as ChangeLog from '../../lib/changelog'
4
import { getContext } from '../../utils/context'
5
6
export class Log extends Command {
@@ -29,7 +29,7 @@ export class Log extends Command {
29
}
30
31
this.log(
32
- ChangeLog.render(ctx.series, {
+ ChangeLog.renderFromSeries(ctx.series, {
33
as: flags.markdown ? 'markdown' : 'plain',
34
})
35
)
0 commit comments