Skip to content

Commit

Permalink
Merge pull request littleredbutton#303 from arawa/chore/make_and_release
Browse files Browse the repository at this point in the history
chore: make clean-dev and release:build
  • Loading branch information
zak39 authored Oct 25, 2024
2 parents a9319bb + 7032a68 commit 71b2ac3
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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/

Expand Down
12 changes: 12 additions & 0 deletions scripts/build-release.js
Original file line number Diff line number Diff line change
@@ -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');
Expand Down Expand Up @@ -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);
Expand Down

0 comments on commit 71b2ac3

Please sign in to comment.