From eb4c09c2ae11e6d8b4e6e11a8a03be3f6245a83c Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Sat, 13 Feb 2021 19:08:11 +0100 Subject: [PATCH] Rename ts grunt task. MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Benoit --- Gruntfile.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Gruntfile.js b/Gruntfile.js index eeaeb558..c42c9a56 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -6,7 +6,7 @@ module.exports = function(grunt) { buildWatch: { watch: './src', }, - prod: {} + build: {} }, mkdir: { assets: { @@ -33,5 +33,5 @@ module.exports = function(grunt) { grunt.loadNpmTasks('grunt-mkdir'); grunt.loadNpmTasks('grunt-contrib-copy'); grunt.loadNpmTasks('grunt-ts'); - grunt.registerTask('default', ['clean:build', 'ts:prod', 'mkdir:assets', 'copy:assets']); + grunt.registerTask('default', ['clean:build', 'ts:build', 'mkdir:assets', 'copy:assets']); }; -- 2.34.1