
| Current Path : /var/www/html_old/abn/web/core/scripts/js/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html_old/abn/web/core/scripts/js/jqueryui-check.js |
const chalk = require('chalk');
const fs = require('fs');
const log = require('./log');
const Terser = require('terser');
module.exports = filePath => {
log(`'${filePath}' is being checked.`);
// Transform the file.
const file = fs.readFileSync(filePath, 'utf-8');
Terser.minify(file).then((result) => {
const fileName = filePath.slice(0, -3);
fs.readFile(`${fileName}-min.js`, function read(err, data) {
if (err) {
log(chalk.red(err));
process.exitCode = 1;
return;
}
if (result.code !== data.toString()) {
log(chalk.red(`'${filePath}' is not updated.`));
process.exitCode = 1;
}
});
});
};