When I run my project using a node server, I have to execute three commands in the command prompt every time:
npm install
node server
grunt serve
I included a pagination directive from Git-hub in my project. However, every time I initialize the project as mentioned above, the path to the pagination.js file in index.html disappears. I installed this pagination module using
bower install angular-utils-pagination
I also tried with the --save option, but the
<script src="assets/lib/angular-utils-pagination/dirPagination.js"></script>
this line keeps disappearing whenever I start the project, and I have to add it manually.
Can you please assist me in resolving this issue?