mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-17 21:26:00 +00:00
generate pad file
This commit is contained in:
29
generatePadFile.js
Normal file
29
generatePadFile.js
Normal file
@@ -0,0 +1,29 @@
|
||||
const fs = require('fs');
|
||||
const path = require('path');
|
||||
const packageJson = fs.readFileSync('app/package.json', { encoding: 'utf-8' });
|
||||
const json = JSON.parse(packageJson);
|
||||
const { version } = json;
|
||||
|
||||
const template = fs.readFileSync('app/dbgate-pad-template.xml');
|
||||
|
||||
const date = new Date();
|
||||
let size = 0;
|
||||
|
||||
const files = fs.readdirSync('app/dist');
|
||||
for (const file of files) {
|
||||
if (file.endsWith('.exe')) {
|
||||
const stats = fs.statSync(path.join('app', 'dist', 'file'));
|
||||
size = stats.size;
|
||||
}
|
||||
}
|
||||
|
||||
const padContent = template
|
||||
.replace('#VERSION#', version)
|
||||
.replace('#YEAR#', date.getFullYear())
|
||||
.replace('#MONTH#', (date.getMonth() + 1).toString().padStart(2, '0'))
|
||||
.replace('#DAY#', date.getDate().toString().padStart(2, '0'))
|
||||
.replace('#SIZE_BYTES#', size)
|
||||
.replace('#SIZE_KB#', Math.round(size / 1024))
|
||||
.replace('#SIZE_MB#', Math.round(size / 1024 / 1024));
|
||||
|
||||
fs.writeFileSync('app/dist/dbgate-pad.xml', padContent, 'utf-8');
|
||||
Reference in New Issue
Block a user