I utilized a bootstrap-compass project by using the yeoman generator provided in this link:
https://www.npmjs.com/package/generator-bootstrap-compass
You can view the file structure through the link mentioned above.
Now, I am looking for guidance on correctly adding JavaScript files to the gruntfile.js of this project. The current content of gruntfile.js is as follows:
module.exports = function(grunt) {
// Grunt configurations and tasks
};
UPDATE:
In order to compress JS code within my project, I have included the 'grunt-contrib-uglify' plugin along with the following code snippet in my gruntfile.js:
uglify: {
all: {
files: {
'<%= config.app %>/public/js/bootstrap.min.js': ['<%= config.app %>/src/javascripts/bootstrap.js']
}
},
}