Rename ts grunt task.
authorJérôme Benoit <jerome.benoit@sap.com>
Sat, 13 Feb 2021 18:08:11 +0000 (19:08 +0100)
committerJérôme Benoit <jerome.benoit@sap.com>
Sat, 13 Feb 2021 18:08:11 +0000 (19:08 +0100)
Signed-off-by: Jérôme Benoit <jerome.benoit@sap.com>
Gruntfile.js

index eeaeb558884a885df61876c18864d9e0371759f0..c42c9a5643332cae9f72027a0742c6f5f1c2e27e 100644 (file)
@@ -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']);
 };