forked from adobe/react-spectrum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathverdaccioPkgSize.js
27 lines (22 loc) · 1.06 KB
/
verdaccioPkgSize.js
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
const fs = require('fs-extra');
const path = require('path');
const glob = require('fast-glob');
const exec = require('child_process').execSync;
verdaccioPkgSize();
// Creates a file listing the tarball sizes of every Verdaccio published package
// Assumes that the verdaccio db json exists and that the store for the packages is ~/.config/verdaccio/storage/
function verdaccioPkgSize() {
let verdaccioStorePath = exec('echo ~/.config/verdaccio/storage/').toString().trim();
if (!fs.existsSync(verdaccioStorePath)) {
verdaccioStorePath = path.join(__dirname, '..', 'verdaccio', 'storage/');
}
let json = {};
let verdaccioDBPath = path.join(__dirname, '..', 'storage', '.verdaccio-db.json');
let publishedPackages = JSON.parse(fs.readFileSync(verdaccioDBPath), 'utf').list;
for (let pkg of publishedPackages) {
let tarballPath = glob.sync(`**/${pkg}/*.tgz`, {cwd: verdaccioStorePath});
let size = fs.statSync(verdaccioStorePath + tarballPath).size / 1000;
json[pkg] = size;
}
fs.writeFileSync('publish.json', JSON.stringify(json, null, 2));
}