/tasks/pipeline.js // Client-side javascript files to inject in order // (uses Grunt-style wildcard/glob/splat expressions) var jsFilesToInject = [ // Dependencies like sails.io.js, jQuery, or Angular // are brought in here // Inject a specific file before the other dependencies. // The duplicate file, captured with the wildcard below, will not be injected. 'js/dependencies/jquery-1.11.0.min.js', 'js/dependencies/**/*.js', // All of the rest of your client-side js files // will be injected here in no particular order. //'js/**/*.js' ];