I am new to gruntJS. Looking at the tutorials/presentations, I believe it is awesome. Currently, we are using batch scripts in our web + embedded project, which performs the following tasks:
- Merges all the JS file into one.
- Merges all the CSS file into one.
- Kills existing .EXE on which our project runs. It's basically a simulator's EXE which loads and runs our website. Our website is packaged in the form of ZIP file.
- Deletes existing ZIP file.
- Creates a new ZIP file which will contain some folders like "html", "lsp" (Lua Server Pages), images, JS(which will contain only one merged file), CSS(which will contain only one CSS file).
- Start the .EXE. Basically the EXE once loaded which pick up the zip file from a specified directory.
I understand, merging process can be achieved via gruntJS, but I am not sure about starting/killing the EXE. It would be great if somebody gives me pointers how to get started. Once being certain about the process, I can convince my boss.
Thanks for reading.