Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgraded some dependencies - Attempt 2 #638

Merged
merged 6 commits into from
May 3, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix eslint issues
  • Loading branch information
Obi-Dann committed May 2, 2023
commit 61ee29fbf4ba8f26e54a9b4a47e65f3341da22e8
2 changes: 1 addition & 1 deletion src/fetchChangelogs.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import {getManagerConfig, RenovateConfig} from 'renovate/dist/config'
import {getChangeLogJSON} from 'renovate/dist/workers/pr/changelog'
import {UpdatedDependency} from './types'
import type {UpdatedDependency} from './types'

export async function fetchChangelogs(
config: RenovateConfig,
Expand Down
2 changes: 1 addition & 1 deletion src/getPrCommentBody.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import {PackageDependency} from 'renovate/dist/manager/types'
import {ChangeLogResult} from 'renovate/dist/workers/pr/changelog'
import {sanitizeMarkdown} from 'renovate/dist/util/markdown'
import {UpdatedDependency} from './types'
import type {UpdatedDependency} from './types'

export const commentTitle = '# Dependency updates summary'
const footer =
Expand Down
2 changes: 1 addition & 1 deletion src/getUpdatedDependencies.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import {PackageDependency, PackageFile} from 'renovate/dist/manager/types'
import {UpdatedDependency} from './types'
import type {UpdatedDependency} from './types'

export function* getUpdatedDependencies(
baseDependencies: Record<string, PackageFile[]>,
Expand Down