forked from vueuse/vueuse
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathexport-size.ts
45 lines (36 loc) · 1.46 KB
/
export-size.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
import { markdownTable } from 'markdown-table'
import { getExportsSize } from 'export-size'
import filesize from 'filesize'
import fs from 'fs-extra'
import { version } from '../package.json'
import { packages } from '../meta/packages'
async function run() {
let md = '# Export size\n\n'
md += 'generated by [export-size](https://github.com/antfu/export-size)<br>\n'
md += `version: ${version}<br>\n`
md += `date: ${new Date().toISOString()}\n\n`
md += '> Please note this is bundle size for each individual APIs (excluding Vue). '
md += 'Since we have a lot shared utilities underneath each function, importing two '
md += 'different functions does NOT necessarily mean the bundle size will be the sum of them (usually smaller). '
md += 'Depends on the bundler and minifier you use, the final result might vary, this list is for reference only.'
md += '\n\n'
for (const pkg of [...packages.slice(1), packages[0]]) {
const { exports, packageJSON } = await getExportsSize({
pkg: `./packages/${pkg.name}/dist`,
output: false,
bundler: 'rollup',
external: ['vue-demi', ...(pkg.external || [])],
includes: ['@vueuse/shared'],
})
md += `<kbd>${packageJSON.name}</kbd>\n\n`
md += markdownTable([
['Function', 'min+gzipped'],
...exports.map((i) => {
return [`\`${i.name}\``, filesize(i.minzipped)]
}),
])
md += '\n\n'
}
await fs.writeFile('packages/Export-Size.md', md, 'utf-8')
}
run()