Skip to content

Commit 6214c9f

Browse files
committed
chore: both run with pack and http
1 parent 4f6a95a commit 6214c9f

File tree

3 files changed

+64
-42
lines changed

3 files changed

+64
-42
lines changed

pnpm-lock.yaml

+2-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/index.ts

+61-37
Original file line numberDiff line numberDiff line change
@@ -26,49 +26,17 @@ export async function fetchAndExtractPackage(options: { name: string, dist?: str
2626
await fs.mkdir(tempDir, { recursive: true })
2727

2828
// Get the package tarball URL
29-
const tarballUrl = await retryAsync(async () => {
30-
return new Promise((resolve, reject) => {
31-
exec(`npm view ${name} dist.tarball`, (error, stdout) => {
32-
if (error) {
33-
reject(error)
34-
}
35-
else {
36-
resolve(stdout.trim())
37-
}
38-
})
39-
})
40-
}, retry)
41-
if (!tarballUrl)
42-
return ''
43-
const protocol = new URL(tarballUrl).protocol
44-
const lib = protocol === 'https:' ? https : http
45-
const tgzPath = path.join(tempDir, `${tempFile}.tgz`)
46-
await retryAsync(async () => {
47-
const tgzFile = createWriteStream(tgzPath)
48-
49-
return new Promise<void>((resolve, reject) => {
50-
lib.get(tarballUrl, (response) => {
51-
response.pipe(tgzFile)
52-
tgzFile.on('finish', () => {
53-
tgzFile.close()
54-
resolve()
55-
})
56-
}).on('error', (error) => {
57-
fs.unlink(`${name}.tgz`).catch((error) => {
58-
reject(error)
59-
})
60-
reject(error)
61-
})
62-
})
63-
}, retry)
29+
const tgzPath = await Promise.any([
30+
downloadWithHttp(name, tempDir, tempFile, retry),
31+
downloadWitchPack(name, tempDir, retry),
32+
])
6433

6534
// Extract the tarball
6635
await tar.x({ file: tgzPath, cwd: tempDir })
6736

6837
// Read package.json to get the main field
6938
const packageJsonPath = path.join(tempDir, 'package', 'package.json')
7039
const packageJson = JSON.parse(await fs.readFile(packageJsonPath, 'utf-8'))
71-
7240
let mainFile = packageJson.main || 'index.js'
7341
if (dist && !mainFile.includes(dist) && packageJson.exports) {
7442
for (const key in packageJson.exports) {
@@ -86,7 +54,6 @@ export async function fetchAndExtractPackage(options: { name: string, dist?: str
8654
// Read the main file content
8755
const mainFilePath = path.join(tempDir, 'package', mainFile)
8856
const mainFileContent = await fs.readFile(mainFilePath, 'utf-8')
89-
9057
// Clean up: remove the temporary directory and tarball
9158
await fs.rm(tempDir, { recursive: true, force: true })
9259

@@ -112,3 +79,60 @@ async function retryAsync<T>(fn: () => Promise<T>, retries: number): Promise<T>
11279
}
11380
}
11481
}
82+
83+
async function downloadWitchPack(name: string, tempDir: string, retry: number) {
84+
await retryAsync(() => {
85+
return new Promise((resolve, reject) => {
86+
exec(`npm pack ${name} --pack-destination ${tempDir}`, (error) => {
87+
if (error) {
88+
reject(error)
89+
}
90+
else {
91+
resolve(true)
92+
}
93+
})
94+
})
95+
}, retry)
96+
const tarballPattern = `${name.replace('@', '').replace('/', '-')}-.*.tgz`
97+
const [tarballPath] = await fs.readdir(tempDir).then(files => files.filter(file => file.match(tarballPattern)))
98+
return path.join(tempDir, tarballPath)
99+
}
100+
101+
async function downloadWithHttp(name: string, tempDir: string, tempFile: string, retry: number) {
102+
const tarballUrl = await retryAsync(async () => {
103+
return new Promise((resolve, reject) => {
104+
exec(`npm view ${name} dist.tarball`, (error, stdout) => {
105+
if (error) {
106+
reject(error)
107+
}
108+
else {
109+
resolve(stdout.trim())
110+
}
111+
})
112+
})
113+
}, retry)
114+
115+
if (!tarballUrl)
116+
return ''
117+
const protocol = new URL(tarballUrl).protocol
118+
const lib = protocol === 'https:' ? https : http
119+
const tgzPath = path.join(tempDir, `${tempFile}.tgz`)
120+
const tgzFile = createWriteStream(tgzPath)
121+
122+
await retryAsync(() => new Promise<void>((resolve, reject) => {
123+
lib.get(tarballUrl, (response) => {
124+
response.pipe(tgzFile)
125+
tgzFile.on('finish', () => {
126+
tgzFile.close()
127+
resolve()
128+
})
129+
}).on('error', (error) => {
130+
fs.unlink(tgzPath).catch((error) => {
131+
reject(error)
132+
})
133+
reject(error)
134+
})
135+
}), retry)
136+
137+
return tgzPath
138+
}

test/index.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -4260,5 +4260,5 @@ describe('should', () => {
42604260
></v-sparkline>\`],[pi,\\"The v-speed-dial component can be used as a floating action button that can reveal additional actions when clicked.\\",'<v-speedDial location=\\"bottom center\\" transition=\\"fade-transition\\"></v-speedDial>'],[wt,\\"The v-fab component can be used as a floating action button. This provides an application with a main point of action\\",'<v-fab icon=\\"$vuetify\\"></v-fab>'],[J,\\"The v-number-input component has support for most of v-field\\\\u2019s props and is follows the same design patterns as other inputs\\",\`<\${e(J.name)}></\${e(J.name)}>\`],[te,\\"The PullToRefresh allows users to update content with a simple downward swipe on their screen. Works for Mobile and Desktop\\",\`<\${e(te.name)}></\${e(te.name)}>\`],[ve,\\"The v-snackbar-queue component is used to queue up multiple snackbar messages to be displayed to the user. Snackbars support positioning, removal delay, and callbacks.\\",\`<\${e(ve.name)}></\${e(ve.name)}>\`],[Se,\\"The v-snackbar-queue component is used to queue up multiple snackbar messages to be displayed to the user. Snackbars support positioning, removal delay, and callbacks.\\",\`<\${e(Se.name)}></\${e(Se.name)}>\`],[ze,\\"The v-snackbar-queue component is used to queue up multiple snackbar messages to be displayed to the user. Snackbars support positioning, removal delay, and callbacks.\\",\`<\${e(ze.name)}></\${e(ze.name)}>\`],[_e,\\"The v-snackbar-queue component is used to queue up multiple snackbar messages to be displayed to the user. Snackbars support positioning, removal delay, and callbacks.\\",\`<\${e(_e.name)}></\${e(_e.name)}>\`],[Ce,\\"tabsWindow\\",\`<\${e(Ce.name)}></\${e(Ce.name)}>\`],[De,\\"tabsWindowItem\\",\`<\${e(De.name)}></\${e(De.name)}>\`],[ke,\\"The v-time-picker is stand-alone component that can be utilized in many existing Vuetify components. It offers the user a visual representation for selecting the time.\\",\`<\${e(ke.name)}></\${e(ke.name)}>\`],[xe,\\"The v-time-picker is stand-alone component that can be utilized in many existing Vuetify components. It offers the user a visual representation for selecting the time.\\",\`<\${e(xe.name)}></\${e(xe.name)}>\`],[Re,\\"The v-time-picker is stand-alone component that can be utilized in many existing Vuetify components. It offers the user a visual representation for selecting the time.\\",\`<\${e(Re.name)}></\${e(Re.name)}>\`],[Ee,\\"The v-treeview component is useful for displaying large amounts of nested data.\\",\`<\${e(Ee.name)}></\${e(Ee.name)}>\`],[Pe,\\"The v-treeview component is useful for displaying large amounts of nested data.\\",\`<\${e(Pe.name)}></\${e(Pe.name)}>\`],[qe,\\"The v-treeview component is useful for displaying large amounts of nested data.\\",\`<\${e(qe.name)}></\${e(qe.name)}>\`]]}function e(t){return t.replace(/([A-Z])/g,\\"-$1\\").toLowerCase().replace(/^-/,\\"\\")}function hr(){return{uiName:\\"vuetify3\\",map:Ei(),lib:\\"vuetify\\",prefix:\\"v\\"}}function mr(t){return{map:Pi(t),isSeperatorByHyphen:!0,prefix:\\"v\\",lib:\\"vuetify\\",directives:xi.vuetify3}}0&&(module.exports={vuetify3,vuetify3Components});
42614261
"
42624262
`)
4263-
})
4263+
}, 100000)
42644264
})

0 commit comments

Comments
 (0)