fix: 🧀 copy util files
This commit is contained in:
parent
10bcb2bafd
commit
791c4d3c8c
1 changed files with 10 additions and 3 deletions
|
@ -17,19 +17,26 @@ module.exports = function (grunt) {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
// Copy worker files (Backend attack methods)
|
// Copy worker files (Backend attack methods and utilities)
|
||||||
copy: {
|
copy: {
|
||||||
static: {
|
static_workers: {
|
||||||
expand: true,
|
expand: true,
|
||||||
cwd: "server/workers/",
|
cwd: "server/workers/",
|
||||||
src: "*",
|
src: "*",
|
||||||
dest: "dist/workers/",
|
dest: "dist/workers/",
|
||||||
},
|
},
|
||||||
|
static_utils: {
|
||||||
|
expand: true,
|
||||||
|
cwd: "server/utils/",
|
||||||
|
src: "*",
|
||||||
|
dest: "dist/utils/",
|
||||||
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
// Run concurrent tasks
|
// Run concurrent tasks
|
||||||
concurrent: {
|
concurrent: {
|
||||||
build: ["shell:buildClient", "shell:buildServer"],
|
build: ["shell:buildClient", "shell:buildServer"],
|
||||||
|
copy_static: ["copy:static_workers", "copy:static_utils"],
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -41,7 +48,7 @@ module.exports = function (grunt) {
|
||||||
grunt.registerTask("build", [
|
grunt.registerTask("build", [
|
||||||
"shell:clean",
|
"shell:clean",
|
||||||
"concurrent:build",
|
"concurrent:build",
|
||||||
"copy:static",
|
"concurrent:copy_static",
|
||||||
]);
|
]);
|
||||||
|
|
||||||
grunt.registerTask("build_server", ["shell:buildServer"]);
|
grunt.registerTask("build_server", ["shell:buildServer"]);
|
||||||
|
|
Loading…
Add table
Reference in a new issue