From: Jérôme Benoit Date: Sat, 13 Feb 2021 18:08:11 +0000 (+0100) Subject: Rename ts grunt task. X-Git-Tag: v1.0.1-0~104^2~7 X-Git-Url: https://git.piment-noir.org/?a=commitdiff_plain;h=eb4c09c2ae11e6d8b4e6e11a8a03be3f6245a83c;p=e-mobility-charging-stations-simulator.git Rename ts grunt task. Signed-off-by: Jérôme Benoit --- 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']); };