[EXPAND] [[messages]] messageTitle = "QB Update for GT 2.8 (#681)" messageBody = """ [QB] [DETAILS] details = ["Fixes many Quest Book issues", "Updates QB with changes in GT 2.8"] [DETAILS] """ [[messages]] messageTitle = "Buildscript Refactor (#681)" messageBody = """ [INTERNAL] [DETAILS] details = ["**Important: Buildscript has changed from `npx gulp...` or `gulp...` to `npm run gulp...`**!", "Moves to Node 16 Package Management + Typescript Strict Mode", "New Port QB, Check QB and Fix QB Tasks"] [DETAILS] """ [EXPAND] Co-authored-by: Integer Limit <103940576+IntegerLimit@users.noreply.github.com> Co-authored-by: Ghzdude <44148655+ghzdude@users.noreply.github.com> Co-authored-by: SparkedTheorem <162088357+SparkedTheorem@users.noreply.github.com>
50 lines
1.5 KiB
TypeScript
50 lines
1.5 KiB
TypeScript
import buildConfig from "#buildConfig";
|
|
import upath from "upath";
|
|
import manifest from "./../manifest.json" assert { type: "json" };
|
|
import { ModpackManifest } from "#types/modpackManifest.ts";
|
|
|
|
export const sharedDestDirectory = upath.join(
|
|
buildConfig.buildDestinationDirectory,
|
|
"shared",
|
|
);
|
|
export const modDestDirectory = upath.join(
|
|
buildConfig.buildDestinationDirectory,
|
|
"mods",
|
|
);
|
|
export const clientDestDirectory = upath.join(
|
|
buildConfig.buildDestinationDirectory,
|
|
"client",
|
|
);
|
|
export const mmcDestDirectory = upath.join(
|
|
buildConfig.buildDestinationDirectory,
|
|
"mmc",
|
|
);
|
|
export const serverDestDirectory = upath.join(
|
|
buildConfig.buildDestinationDirectory,
|
|
"server",
|
|
);
|
|
export const langDestDirectory = upath.join(
|
|
buildConfig.buildDestinationDirectory,
|
|
"lang",
|
|
);
|
|
export const tempDirectory = upath.join(
|
|
buildConfig.buildDestinationDirectory,
|
|
"temp",
|
|
);
|
|
export const modpackManifest = manifest as ModpackManifest;
|
|
export const overridesFolder = modpackManifest.overrides || "overrides";
|
|
export const configFolder = upath.join(overridesFolder, "config");
|
|
export const configOverridesFolder = upath.join(
|
|
overridesFolder,
|
|
"config-overrides",
|
|
);
|
|
export const rootDirectory = "..";
|
|
export const templatesFolder = "templates";
|
|
export const storageFolder = "storage";
|
|
|
|
// The Repository Owner (For Issues & PR Tags Transforms in Changelog)
|
|
export const repoOwner = "Nomi-CEu";
|
|
|
|
// The Repository Name (For Issues & PR Tags Transforms in Changelog)
|
|
export const repoName = "Nomi-CEu";
|