@@ -14,12 +14,21 @@ import * as tar from 'tar'
14
14
* @param options.name - 要获取的 npm 包的名称。
15
15
* @param options.retry - 可选。重试次数,默认为 1。
16
16
* @param options.dist - 可选。要在包导出中查找的分发目录。
17
+ * @param options.logger - 可选。在 vscode 插件中输出日志。
17
18
* @returns 获取包的主文件的内容。
18
19
* @throws 如果包无法获取、解压或读取,将抛出错误。
19
20
*/
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 } ) {
21
22
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
23
32
const tempFile = name . split ( '/' ) . join ( '-' )
24
33
const url = typeof __filename !== 'undefined' ? __filename : fileURLToPath ( import . meta. url )
25
34
const tempDir = path . join ( url , '..' , tempFile )
@@ -40,19 +49,16 @@ export async function fetchAndExtractPackage(options: { name: string, dist?: str
40
49
41
50
// Get the package tarball URL
42
51
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 ) ,
45
54
] )
46
55
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 } ` )
51
58
// Extract the tarball
52
59
await tar . x ( { file : tgzPath , cwd : tempDir } )
53
60
54
- // eslint-disable-next-line no-console
55
- console . log ( `${ loggerPrefix } extract success!` )
61
+ logger . info ( `${ loggerPrefix } extract success!` )
56
62
57
63
// Read package.json to get the main field
58
64
const packageJsonPath = path . join ( tempDir , 'package' , 'package.json' )
@@ -73,8 +79,8 @@ export async function fetchAndExtractPackage(options: { name: string, dist?: str
73
79
}
74
80
// Read the main file content
75
81
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 } ` )
78
84
const mainFileContent = await fsp . readFile ( mainFilePath , 'utf-8' )
79
85
// Clean up: remove the temporary directory and tarball
80
86
await fsp . rm ( tempDir , { recursive : true , force : true } )
@@ -105,12 +111,12 @@ async function retryAsync<T>(fn: () => Promise<T>, retries: number): Promise<T>
105
111
}
106
112
}
107
113
108
- async function downloadWitchPack ( name : string , tempDir : string , retry : number ) {
114
+ async function downloadWitchPack ( name : string , tempDir : string , retry : number , logger : any ) {
109
115
await retryAsync ( ( ) => {
110
116
return new Promise ( ( resolve , reject ) => {
111
117
exec ( `npm pack ${ name } --pack-destination ${ tempDir } ` , ( error ) => {
112
118
if ( error ) {
113
- console . error ( error )
119
+ logger . error ( error )
114
120
reject ( error )
115
121
}
116
122
else {
@@ -124,11 +130,12 @@ async function downloadWitchPack(name: string, tempDir: string, retry: number) {
124
130
return path . join ( tempDir , tarballPath )
125
131
}
126
132
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 ) {
128
134
const tarballUrl = await retryAsync ( async ( ) => {
129
135
return new Promise ( ( resolve , reject ) => {
130
136
exec ( `npm view ${ name } dist.tarball` , ( error , stdout ) => {
131
137
if ( error ) {
138
+ logger . error ( error )
132
139
reject ( error )
133
140
}
134
141
else {
0 commit comments