MikuMikuBeam/Gruntfile.cjs
2025-01-26 18:45:22 -03:00

49 lines
1.1 KiB
JavaScript

module.exports = function (grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON("package.json"),
// Build from source.
shell: {
clean: {
command: "rimraf dist",
},
buildClient: {
command: "vite build",
},
buildServer: {
command:
"tsc --project tsconfig.server.json && tsc-alias -p tsconfig.server.json",
},
},
// Copy worker files (Backend attack methods)
copy: {
static: {
expand: true,
cwd: "server/workers/",
src: "*",
dest: "dist/workers/",
},
},
// Run concurrent tasks
concurrent: {
build: ["shell:buildClient", "shell:buildServer"],
},
});
grunt.loadNpmTasks("grunt-contrib-copy");
grunt.loadNpmTasks("grunt-shell");
grunt.loadNpmTasks("grunt-concurrent");
// Run our tasks
grunt.registerTask("build", [
"shell:clean",
"concurrent:build",
"copy:static",
]);
grunt.registerTask("build_server", ["shell:buildServer"]);
grunt.registerTask("build_client", ["shell:buildClient"]);
};