Skip to content

Commit 73817a5

Browse files
committed
fix(core,simple-github-release): package build fix
1 parent 9253aff commit 73817a5

File tree

6 files changed

+4
-4
lines changed

6 files changed

+4
-4
lines changed

packages/core/src/changelog.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import {
1313
changelogHeader,
1414
addReleaseNotes,
1515
extractLastReleaseFromFile
16-
} from './changelog.js'
16+
} from './change-log.js'
1717

1818
async function* stringToIterable(str: string) {
1919
const lines = str.split('\n')

packages/core/src/project/project.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import {
1010
addReleaseNotes,
1111
extractLastRelease,
1212
extractLastReleaseFromFile
13-
} from '../changelog.js'
13+
} from '../change-log.js'
1414
import type { ReleaseData } from '../hosting/index.js'
1515
import { getReleaseType } from '../utils.js'
1616
import type {
File renamed without changes.

packages/simple-github-release/src/changelog.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { describe, it, expect } from 'vitest'
22
import { fileURLToPath } from 'url'
33
import fs from 'fs'
44
import path from 'path'
5-
import { readLastChangesFromStream } from './changelog.js'
5+
import { readLastChangesFromStream } from './change-log.js'
66

77
const dirname = fileURLToPath(new URL('.', import.meta.url))
88
const mocks = path.join(dirname, '..', 'test', 'mocks')
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
export * from './types.js'
2-
export * from './changelog.js'
2+
export * from './change-log.js'
33
export * from './git.js'
44
export * from './github.js'

0 commit comments

Comments
 (0)