mirror of
https://github.com/thepeacockproject/Peacock
synced 2024-11-22 22:12:45 +01:00
85a55d4b48
Added simplified mastery data for all locations Added runtime generation of the full mastery data Added initial support for profile progression Reworked code around loading of resources to be more generic
59 lines
1.8 KiB
JavaScript
59 lines
1.8 KiB
JavaScript
/*
|
|
* The Peacock Project - a HITMAN server replacement.
|
|
* Copyright (C) 2021-2022 The Peacock Project Team
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Affero General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
import picocolors from "picocolors"
|
|
import { packResources } from "./buildTasks.mjs"
|
|
import { createRequire, Module } from "module"
|
|
import { readFileSync } from "fs"
|
|
|
|
// this `require` instance will be hijacked by `esbuild-register` so we can load
|
|
// TS files as if they were JS in a CommonJS environment
|
|
const require = createRequire(import.meta.url)
|
|
|
|
await packResources()
|
|
|
|
const { version, revisionIdent } = require("../package.json")
|
|
|
|
global.PEACOCK_DEV = true
|
|
global.HUMAN_VERSION = version
|
|
global.REV_IDENT = revisionIdent
|
|
|
|
process.env.DEBUG = "peacock"
|
|
|
|
// now we launch the server
|
|
|
|
console.log(
|
|
`${picocolors.greenBright(
|
|
">>> PeacockDev",
|
|
)} Spawning development server in ${process.cwd()}.`,
|
|
)
|
|
|
|
const { register } = require("esbuild-register/dist/node")
|
|
|
|
register()
|
|
|
|
const resolveTextFile = function (module, path) {
|
|
const content = readFileSync(path).toString()
|
|
|
|
module.exports = content
|
|
}
|
|
|
|
Module._extensions[".json"] = resolveTextFile
|
|
|
|
require("../components/index.ts")
|