Last active
August 29, 2015 14:05
-
-
Save gabidavila/d63a9e3e36398d5a3b4e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Part of Gruntfile.js, this is the Concat section | |
| concat: { | |
| options: { | |
| separator: ';', | |
| }, | |
| js_header: { | |
| src: [ | |
| '<%= paths.assets.vendor %>modernizr/modernizr.js', | |
| '<%= paths.assets.js %>custom.js' | |
| ], | |
| dest: '<%= paths.js %>expanded/scripts_header.js', | |
| }, | |
| js_footer: { | |
| src: [ | |
| '<%= paths.assets.vendor %>jquery/dist/jquery.js', | |
| '<%= paths.assets.vendor %>jquery.cookie/jquery.cookie.js', | |
| '<%= paths.assets.vendor %>jquery.placeholder/jquery.placeholder.js', | |
| '<%= paths.assets.vendor %>fastclick/lib/fastclick.js', | |
| '<%= paths.assets.vendor %>foundation/js/foundation.js' | |
| ], | |
| dest: '<%= paths.js %>expanded/scripts_footer.js', | |
| } | |
| }, | |
| // This is at the end of the file, the plugin section: | |
| // Plugin loading | |
| grunt.loadNpmTasks('grunt-contrib-compass'); | |
| grunt.loadNpmTasks('grunt-contrib-sass'); | |
| grunt.loadNpmTasks('grunt-contrib-concat'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment