mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2025-12-11 10:13:55 -06:00
Merge pull request #1592 from acelaya-forks/feature/create-dist-file-improvements
Improve create-dist-file.mjs script
This commit is contained in:
commit
979f002f0c
@ -1,23 +1,20 @@
|
|||||||
// 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';
|
|
||||||
|
|
||||||
import chalk from 'chalk';
|
import chalk from 'chalk';
|
||||||
import AdmZip from 'adm-zip';
|
import AdmZip from 'adm-zip';
|
||||||
import fs from 'fs';
|
import fs from 'fs';
|
||||||
|
|
||||||
function zipDist(version) {
|
function zipDist(version) {
|
||||||
const versionFileName = `./dist/shlink-web-client_${version}_dist.zip`;
|
const fileBaseName = `shlink-web-client_${version}_dist`;
|
||||||
|
const versionFileName = `./dist/${fileBaseName}.zip`;
|
||||||
|
|
||||||
console.log(chalk.cyan(`Generating dist file for version ${chalk.bold(version)}...`));
|
console.log(chalk.cyan(`Generating dist file for version ${chalk.bold(version)}...`));
|
||||||
const zip = new AdmZip();
|
const zip = new AdmZip();
|
||||||
|
|
||||||
try {
|
try {
|
||||||
if (fs.existsSync(versionFileName)) {
|
if (fs.existsSync(versionFileName)) {
|
||||||
fs.unlink(versionFileName);
|
fs.unlinkSync(versionFileName);
|
||||||
}
|
}
|
||||||
|
|
||||||
zip.addLocalFolder('./build', `shlink-web-client_${version}_dist`);
|
zip.addLocalFolder('./build', fileBaseName);
|
||||||
zip.writeZip(versionFileName);
|
zip.writeZip(versionFileName);
|
||||||
console.log(chalk.green('Dist file properly generated'));
|
console.log(chalk.green('Dist file properly generated'));
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user