Created
May 18, 2018 16:26
-
-
Save craigsimps/7af8f3882e26334b539a05411597398b to your computer and use it in GitHub Desktop.
This file contains 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
toolkit.extendConfig({ | |
/* ... Shortened for readability. */ | |
js: { | |
'global': [ /* File will be output as global.js and global.min.js */ | |
'develop/js/responsive-menus.js', | |
'develop/js/backstretch.jquery.js', | |
'develop/js/bxslider.jquery.js', | |
'develop/js/main.js' | |
], | |
'account': [ /* File will be output as account.js and account.min.js */ | |
'develop/js/rate-calculator.js', | |
'develop/js/profile.js', | |
'develop/js/account-init.js' | |
] | |
}, | |
dest: { | |
js: 'assets/js/', /* Output finished JS inside /assets/js/ */ | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment