Skip to content

Instantly share code, notes, and snippets.

@mufaddalmw
Created May 23, 2017 04:44
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 mufaddalmw/bdaa27f3e429e0b6534ccae2f138f5d1 to your computer and use it in GitHub Desktop.
Save mufaddalmw/bdaa27f3e429e0b6534ccae2f138f5d1 to your computer and use it in GitHub Desktop.
How to give order of js files in gulpfile.js
scripts: [
'./node_modules/jquery/dist/jquery.min.js', //jquery library
'./node_modules/foundation-sites/dist/js/plugins/foundation.core.js', //foundation core library
'./node_modules/foundation-sites/dist/js/plugins/foundation.util.keyboard.js', //foundation core library
'./node_modules/foundation-sites/dist/js/plugins/foundation.util.box.js', //foundation core library
'./node_modules/foundation-sites/dist/js/plugins/foundation.util.triggers.js', //foundation core library
'./node_modules/foundation-sites/dist/js/plugins/foundation.util.mediaQuery.js', //foundation core library
'./node_modules/foundation-sites/dist/js/plugins/foundation.util.motion.js', //foundation core library
'./node_modules/foundation-sites/dist/js/plugins/foundation.reveal.js', //foundation modal (popup)
'./node_modules/foundation-sites/dist/js/plugins/foundation.abide.js', //foundation form validation
'./app/assets/js/src/**/*.js' //custom js files
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment