aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts/client-build-stats.ts
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2021-02-10 16:16:46 +0100
committerChocobozzz <me@florianbigard.com>2021-02-10 16:16:46 +0100
commit99bb59fa7796ed2dc25e7771d916411ebb1b9279 (patch)
treea345f33a7efc97589ee5a41446a3a79dfc91c755 /scripts/client-build-stats.ts
parent45ba09fef3b970fb916ffb1b0ac7509db7bbdde6 (diff)
downloadPeerTube-99bb59fa7796ed2dc25e7771d916411ebb1b9279.tar.gz
PeerTube-99bb59fa7796ed2dc25e7771d916411ebb1b9279.tar.zst
PeerTube-99bb59fa7796ed2dc25e7771d916411ebb1b9279.zip
Add client build stats script
Diffstat (limited to 'scripts/client-build-stats.ts')
-rw-r--r--scripts/client-build-stats.ts33
1 files changed, 33 insertions, 0 deletions
diff --git a/scripts/client-build-stats.ts b/scripts/client-build-stats.ts
new file mode 100644
index 000000000..a6085902c
--- /dev/null
+++ b/scripts/client-build-stats.ts
@@ -0,0 +1,33 @@
1import { registerTSPaths } from '../server/helpers/register-ts-paths'
2registerTSPaths()
3
4import { readdir, stat } from 'fs-extra'
5import { join } from 'path'
6import { root } from '@server/helpers/core-utils'
7
8async function run () {
9 const result = {
10 app: await buildResult(join(root(), 'client', 'dist', 'en-US')),
11 embed: await buildResult(join(root(), 'client', 'dist', 'standalone', 'videos'))
12 }
13
14 console.log(JSON.stringify(result))
15}
16
17run()
18 .catch(err => console.error(err))
19
20async function buildResult (path: string) {
21 const distFiles = await readdir(path)
22
23 const files: { [ name: string ]: number } = {}
24
25 for (const file of distFiles) {
26 const filePath = join(path, file)
27
28 const statsResult = await stat(filePath)
29 files[file] = statsResult.size
30 }
31
32 return files
33}