I am trying to create a .bat file to be able to boot the gulp system that I have.
What I do so far is open a DOS console, go to the path 'D: \ my_project \ gulp \ bin' then run the command 'gulp.js serve' and it starts with it.
I want to automate it in a .bat and for that I made a file with these instructions:
@echo off
D:\mi_proyecto\gulp\bin\gulp.js serve
exit
But it does not work for me. I also tried putting quotation marks on the orders:
@echo off
D:\mi_proyecto\gulp\bin\"gulp.js serve"
exit
But neither. Can someone please give me a hand with this? Thanks.