Skip to content

Commit a70f158

Browse files
committed
fix(@142vip/changelog): 修复vipQs类方法引用异常
1 parent 862b2fa commit a70f158

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

packages/changelog/src/core/github.api.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import type { Commit, GitAuthorInfo } from '@142vip/changelog'
2-
import { HttpMethod, VipColor, VipConsole, vipLogger, VipQs } from '@142vip/utils'
2+
import { HttpMethod, VipColor, VipConsole, vipLogger, vipQs } from '@142vip/utils'
33
import { $fetch } from 'ofetch'
44

55
function getHeaders(token: string) {
@@ -132,7 +132,7 @@ function generateReleaseUrl(markdown: string, config: {
132132
prerelease: boolean
133133
}): string {
134134
const baseUrl = `https://${config.baseUrl}/${config.repo}/releases/new`
135-
const queryParams = VipQs.stringify({
135+
const queryParams = vipQs.stringify({
136136
title: config.name || config.to,
137137
body: markdown,
138138
tag: config.to,

0 commit comments

Comments
 (0)