mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2024-12-23 17:40:23 +03:00
37 lines
1.1 KiB
JavaScript
37 lines
1.1 KiB
JavaScript
|
/* eslint-disable no-console, @typescript-eslint/prefer-nullish-coalescing, @typescript-eslint/promise-function-async, @typescript-eslint/prefer-optional-chain */
|
||
|
|
||
|
// Do this as the first thing so that any code reading it knows the right env.
|
||
|
process.env.BABEL_ENV = 'production';
|
||
|
process.env.NODE_ENV = 'production';
|
||
|
|
||
|
const chalk = require('chalk');
|
||
|
const AdmZip = require('adm-zip');
|
||
|
const fs = require('fs-extra');
|
||
|
|
||
|
function zipDist(version) {
|
||
|
const versionFileName = `./dist/shlink-web-client_${version}_dist.zip`;
|
||
|
|
||
|
console.log(chalk.cyan(`Generating dist file for version ${chalk.bold(version)}...`));
|
||
|
const zip = new AdmZip();
|
||
|
|
||
|
try {
|
||
|
if (fs.existsSync(versionFileName)) {
|
||
|
fs.unlink(versionFileName);
|
||
|
}
|
||
|
|
||
|
zip.addLocalFolder('./build', `shlink-web-client_${version}_dist`);
|
||
|
zip.writeZip(versionFileName);
|
||
|
console.log(chalk.green('Dist file properly generated'));
|
||
|
} catch (e) {
|
||
|
console.log(chalk.red('An error occurred while generating dist file'));
|
||
|
console.log(e);
|
||
|
}
|
||
|
console.log();
|
||
|
}
|
||
|
|
||
|
const version = process.env.VERSION;
|
||
|
|
||
|
if (version) {
|
||
|
zipDist(version);
|
||
|
}
|