[FEATURE] /* Description: */ Also moves all nodejs stuff into `tools` package. Also adds a basic `CONTRIBUTING.md` file. Superseeds https://github.com/Nomi-CEu/Nomi-CEu/pull/431, which was closed as the branch needed to be renamed, due to the last two items on this list. TODO: - [x] Make it only run on master repo. - [x] Remove qb-lang-revamp branch from the events - [x] Allow workflow to run on all branches starting with test_buildscript? /* Commits: */ * Buildscript Changes * Make Contributing Docs a .md file * updateqb.yml v1 * Test QB change * Add lang file to commit file list * Another Test Change * Test with only lang path, + `./` at beginning of path * Test QB change * updateqb.yml v3 * Test QB Change * Add some debug settings * Remove debug, branch input. Switch to auto-commit action * Make activate: branches prefix `test_buildscript`, commit author GHA bot * Add branch prefix note into CONTRIBUTING.md * Make workflow only run if on master repo
47 lines
1.3 KiB
TypeScript
47 lines
1.3 KiB
TypeScript
import {
|
|
clientDestDirectory,
|
|
langDestDirectory,
|
|
mmcDestDirectory,
|
|
modpackManifest,
|
|
serverDestDirectory,
|
|
} from "../../globals";
|
|
import upath from "upath";
|
|
import zip from "gulp-zip";
|
|
import gulp from "gulp";
|
|
import buildConfig from "../../buildConfig";
|
|
import { makeArtifactNameBody } from "../../util/util";
|
|
import sanitize from "sanitize-filename";
|
|
|
|
async function zipFolder(path: string, zipName: string = upath.basename(path) + ".zip"): Promise<void> {
|
|
return new Promise((resolve) => {
|
|
gulp
|
|
.src(upath.join(path, "**"), { nodir: true, base: path, dot: true })
|
|
.pipe(zip(zipName))
|
|
.pipe(gulp.dest(buildConfig.buildDestinationDirectory))
|
|
.on("end", resolve);
|
|
});
|
|
}
|
|
|
|
function makeZipper(src: string, artifactName: string) {
|
|
const zipFn = () => {
|
|
return zipFolder(
|
|
upath.join(src),
|
|
sanitize((makeArtifactNameBody(modpackManifest.name) + `-${artifactName}.zip`).toLowerCase()),
|
|
);
|
|
};
|
|
|
|
Object.defineProperty(zipFn, "name", {
|
|
value: `zip${artifactName}`,
|
|
configurable: true,
|
|
});
|
|
|
|
return zipFn;
|
|
}
|
|
|
|
export const zipServer = makeZipper(serverDestDirectory, "Server");
|
|
export const zipClient = makeZipper(clientDestDirectory, "Client");
|
|
export const zipLang = makeZipper(langDestDirectory, "Lang");
|
|
export const zipMMC = makeZipper(mmcDestDirectory, "MMC");
|
|
|
|
export const zipAll = gulp.series(zipServer, zipClient, zipLang);
|