Right now I have to use the current build system which works ok but I'd rather use some features of your plugin. It would be great to be able to specify a custom command to run as well as declare other grunt tasks. Current setup:
So essentially I need to run cd ${project_path:${folder}} && vagrant ssh -c "cd /srv/www/ && grunt build" in order for my grunt commands to work. What do you think about a new setting so I could do something like this:
At runtime it could replace [project_path] with the current path and [grunt] with the commands you need to run for the plugin to work. The tasks option would allow grunt, grunt build, grunt test which I have setup like this:
// Default task.
grunt.registerTask('default', []);
// Production build
grunt.registerTask('build', []);
// Test build
grunt.registerTask('test', []);
Right now I have to use the current build system which works ok but I'd rather use some features of your plugin. It would be great to be able to specify a custom command to run as well as declare other grunt tasks. Current setup:
So essentially I need to run
cd ${project_path:${folder}} && vagrant ssh -c "cd /srv/www/ && grunt build"
in order for my grunt commands to work. What do you think about a new setting so I could do something like this:At runtime it could replace [project_path] with the current path and [grunt] with the commands you need to run for the plugin to work. The tasks option would allow
grunt
,grunt build
,grunt test
which I have setup like this: