chore: make clean-dev and creates archives folder (release:build) when necessary

pull/303/head
Sebastien Marinier 2024-10-25 17:47:48 +02:00
parent 33f6701713
commit 7032a68700
2 changed files with 16 additions and 1 deletions

View File

@ -62,8 +62,11 @@ clean:
clean-dev:
rm -rf node_modules
git checkout composer.json
git checkout composer.lock
rm -rf vendor
pack:
pack: install-composer-deps
mkdir -p archive
tar --exclude='./Makefile' --exclude='./webpack*' --exclude='./.*' --exclude='./ts' --exclude='./tests' --exclude='./node_modules' --exclude='./archive' -zcvf ./archive/cloud_bbb.tar.gz . --transform s/^./bbb/

View File

@ -1,4 +1,11 @@
/* eslint-disable @typescript-eslint/no-var-requires */
/**
* npm run release:build [--dry-run] [--stable]
*
* --dry-run don't commit CHANGELOG.md
* --stable generate changelog
*
*/
const colors = require('colors');
const fs = require('fs');
const path = require('path');
@ -155,6 +162,11 @@ async function commitChangeLog() {
function createArchive(appId, fileBaseName) {
const archivesPath = path.normalize(__dirname + '/../archives/');
if (!fs.existsSync(archivesPath)){
fs.mkdirSync(archivesPath);
}
const fileName = `${fileBaseName}.tar.gz`;
const filePath = path.normalize(__dirname + `/../archives/${fileName}`);
const output = fs.createWriteStream(filePath);