From 791c4d3c8c4c3737c8775d7caacfa59b7260825d Mon Sep 17 00:00:00 2001 From: Sammwy Date: Mon, 27 Jan 2025 21:02:21 -0300 Subject: [PATCH] =?UTF-8?q?fix:=20=F0=9F=A7=80=20copy=20util=20files?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Gruntfile.cjs | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/Gruntfile.cjs b/Gruntfile.cjs index 9bf80c4..68bb25b 100644 --- a/Gruntfile.cjs +++ b/Gruntfile.cjs @@ -17,19 +17,26 @@ module.exports = function (grunt) { }, }, - // Copy worker files (Backend attack methods) + // Copy worker files (Backend attack methods and utilities) copy: { - static: { + static_workers: { expand: true, cwd: "server/workers/", src: "*", dest: "dist/workers/", }, + static_utils: { + expand: true, + cwd: "server/utils/", + src: "*", + dest: "dist/utils/", + }, }, // Run concurrent tasks concurrent: { build: ["shell:buildClient", "shell:buildServer"], + copy_static: ["copy:static_workers", "copy:static_utils"], }, }); @@ -41,7 +48,7 @@ module.exports = function (grunt) { grunt.registerTask("build", [ "shell:clean", "concurrent:build", - "copy:static", + "concurrent:copy_static", ]); grunt.registerTask("build_server", ["shell:buildServer"]);