Skip to content

Commit dfcb2a1

Browse files
committed
chore: add logger params
1 parent 4926b0c commit dfcb2a1

File tree

1 file changed

+22
-15
lines changed

1 file changed

+22
-15
lines changed

src/index.ts

+22-15
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,21 @@ import * as tar from 'tar'
1414
* @param options.name - 要获取的 npm 包的名称。
1515
* @param options.retry - 可选。重试次数,默认为 1。
1616
* @param options.dist - 可选。要在包导出中查找的分发目录。
17+
* @param options.logger - 可选。在 vscode 插件中输出日志。
1718
* @returns 获取包的主文件的内容。
1819
* @throws 如果包无法获取、解压或读取,将抛出错误。
1920
*/
20-
export async function fetchAndExtractPackage(options: { name: string, dist?: string, retry?: number }) {
21+
export async function fetchAndExtractPackage(options: { name: string, dist?: string, retry?: number, logger?: any }) {
2122
const loggerPrefix = '[fetch-npm]:'
22-
const { name, dist, retry = 1 } = options
23+
const { name, dist, retry = 1, logger = {
24+
info: (msg: string) => {
25+
// eslint-disable-next-line no-console
26+
console.log(msg)
27+
},
28+
error: (err: string) => {
29+
console.error(err)
30+
},
31+
} } = options
2332
const tempFile = name.split('/').join('-')
2433
const url = typeof __filename !== 'undefined' ? __filename : fileURLToPath(import.meta.url)
2534
const tempDir = path.join(url, '..', tempFile)
@@ -40,19 +49,16 @@ export async function fetchAndExtractPackage(options: { name: string, dist?: str
4049

4150
// Get the package tarball URL
4251
const tgzPath = await Promise.any([
43-
downloadWithHttp(name, tempDir, tempFile, retry),
44-
downloadWitchPack(name, tempDir, retry),
52+
downloadWithHttp(name, tempDir, tempFile, retry, logger),
53+
downloadWitchPack(name, tempDir, retry, logger),
4554
])
4655

47-
// eslint-disable-next-line no-console
48-
console.log(`${loggerPrefix} download tgz success!`)
49-
// eslint-disable-next-line no-console
50-
console.log(`${loggerPrefix} tgzPath: ${tgzPath}\ntempDir: ${tempDir}`)
56+
logger.info(`${loggerPrefix} download tgz success!`)
57+
logger.info(`${loggerPrefix} tgzPath: ${tgzPath}\ntempDir: ${tempDir}`)
5158
// Extract the tarball
5259
await tar.x({ file: tgzPath, cwd: tempDir })
5360

54-
// eslint-disable-next-line no-console
55-
console.log(`${loggerPrefix} extract success!`)
61+
logger.info(`${loggerPrefix} extract success!`)
5662

5763
// Read package.json to get the main field
5864
const packageJsonPath = path.join(tempDir, 'package', 'package.json')
@@ -73,8 +79,8 @@ export async function fetchAndExtractPackage(options: { name: string, dist?: str
7379
}
7480
// Read the main file content
7581
const mainFilePath = path.join(tempDir, 'package', mainFile)
76-
// eslint-disable-next-line no-console
77-
console.log(`${loggerPrefix} mainFilePath: ${mainFilePath}`)
82+
83+
logger.info(`${loggerPrefix} mainFilePath: ${mainFilePath}`)
7884
const mainFileContent = await fsp.readFile(mainFilePath, 'utf-8')
7985
// Clean up: remove the temporary directory and tarball
8086
await fsp.rm(tempDir, { recursive: true, force: true })
@@ -105,12 +111,12 @@ async function retryAsync<T>(fn: () => Promise<T>, retries: number): Promise<T>
105111
}
106112
}
107113

108-
async function downloadWitchPack(name: string, tempDir: string, retry: number) {
114+
async function downloadWitchPack(name: string, tempDir: string, retry: number, logger: any) {
109115
await retryAsync(() => {
110116
return new Promise((resolve, reject) => {
111117
exec(`npm pack ${name} --pack-destination ${tempDir}`, (error) => {
112118
if (error) {
113-
console.error(error)
119+
logger.error(error)
114120
reject(error)
115121
}
116122
else {
@@ -124,11 +130,12 @@ async function downloadWitchPack(name: string, tempDir: string, retry: number) {
124130
return path.join(tempDir, tarballPath)
125131
}
126132

127-
async function downloadWithHttp(name: string, tempDir: string, tempFile: string, retry: number) {
133+
async function downloadWithHttp(name: string, tempDir: string, tempFile: string, retry: number, logger: any) {
128134
const tarballUrl = await retryAsync(async () => {
129135
return new Promise((resolve, reject) => {
130136
exec(`npm view ${name} dist.tarball`, (error, stdout) => {
131137
if (error) {
138+
logger.error(error)
132139
reject(error)
133140
}
134141
else {

0 commit comments

Comments
 (0)