Adds bleedingmods
Build Type
This commit is contained in:
parent
252d009283
commit
72ddbc4192
@ -31,6 +31,7 @@ const entries = {
|
||||
release: path.join("obj", "ide", "ReleaseEntry.js"),
|
||||
debug: path.join("obj", "ide", "DebugEntry.js"),
|
||||
bleeding: path.join("obj", "ide", "BleedingEdgeEntry.js"),
|
||||
bleedingmods: path.join("obj", "ide", "BleedingEdgeModsEntry.js"),
|
||||
};
|
||||
const licenseFile = "../LICENSE.md";
|
||||
|
||||
@ -349,6 +350,7 @@ const packaging = async (entry) =>
|
||||
gulp.task("build:debug", build("debug"));
|
||||
gulp.task("build:release", build("release"));
|
||||
gulp.task("build:bleeding", build("bleeding"));
|
||||
gulp.task("build:bleedingmods", build("bleedingmods"));
|
||||
|
||||
gulp.task("run:build", async () => await exec("Aki.Server.exe", { stdio, cwd: buildDir }));
|
||||
gulp.task(
|
||||
|
@ -23,6 +23,7 @@
|
||||
"build:release": "cross-env PKG_CACHE_PATH=\"./.pkg-cache\" gulp build:release",
|
||||
"build:debug": "cross-env PKG_CACHE_PATH=\"./.pkg-cache\" gulp build:debug",
|
||||
"build:bleeding": "cross-env PKG_CACHE_PATH=\"./.pkg-cache\" gulp build:bleeding",
|
||||
"build:bleedingmods": "cross-env PKG_CACHE_PATH=\"./.pkg-cache\" gulp build:bleedingmods",
|
||||
"run:build": "gulp run:build",
|
||||
"run:debug": "gulp run:debug",
|
||||
"run:profiler": "gulp run:profiler",
|
||||
|
14
project/src/ide/BleedingEdgeModsEntry.ts
Normal file
14
project/src/ide/BleedingEdgeModsEntry.ts
Normal file
@ -0,0 +1,14 @@
|
||||
import "reflect-metadata";
|
||||
import "source-map-support/register";
|
||||
|
||||
import { Program } from "@spt-aki/Program";
|
||||
|
||||
globalThis.G_DEBUG_CONFIGURATION = true;
|
||||
globalThis.G_RELEASE_CONFIGURATION = true;
|
||||
globalThis.G_MODS_ENABLED = true;
|
||||
globalThis.G_MODS_TRANSPILE_TS = true;
|
||||
globalThis.G_LOG_REQUESTS = true;
|
||||
globalThis.G_WATERMARK_ENABLED = true;
|
||||
|
||||
const program = new Program();
|
||||
program.start();
|
Loading…
x
Reference in New Issue
Block a user