So you could install all css / js dependencies like jquery, boostrap, font-awesome via npm and then use gulp to copy the dependencies to the local project.
So you can update local dependencies easily just by changing the version in package.json and get rid of online CDN ensuring offline view. (see related #172).
You should use a workflow automator like gulp.
So you could install all css / js dependencies like jquery, boostrap, font-awesome via npm and then use gulp to copy the dependencies to the local project.
Here is an example on one of my project: https://github.com/noraj/rawsec-cybersecurity-inventory/blob/master/gulpfile.js
So managing dependencies is easy as:
So you can update local dependencies easily just by changing the version in package.json and get rid of online CDN ensuring offline view. (see related #172).