So I mean something like:
grunt.registerTask('default', ['default']); // CLI: grunt
grunt.registerTask('serve', ['serve']); // CLI: grunt serve
grunt.registerTask('test', ['test']); // CLI: grunt test
And then I want just one task which runs the 3 of those in one call, like, if I type into the cmd "grunt tasks", it runs any tasks I want such as default, serve or test in the order I specify, etc.
Can this be done? The docs arent very clear (maybe its my dyspraxia, but it just doesnt read well to me).
Cheers,
-- SD