Skip to content

Instantly share code, notes, and snippets.

@samuelayo
Created February 4, 2019 16:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save samuelayo/6e2df5b9d1a63e927625231c04b89558 to your computer and use it in GitHub Desktop.
Save samuelayo/6e2df5b9d1a63e927625231c04b89558 to your computer and use it in GitHub Desktop.
module.exports = function(grunt){
grunt.initConfig({
concat: {
dist: {
src: ['js/main1.js', 'js/main2.js'],
dest: 'dist/js/built.js',
},
},
});
grunt.loadNpmTasks('grunt-contrib-concat');
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment