Last active
July 5, 2016 12:41
-
-
Save hnxvc/c9e477959a12986b38dd8fa4040a303a to your computer and use it in GitHub Desktop.
gulpconfig.js
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
'user strict'; | |
module.exports = function(){ | |
var base = '../html/sass-template/'; | |
var config = { | |
base : base, | |
js_vendors : [ | |
base + 'vendors/jquery/jquery-1.12.4.js', | |
base + 'vendors/*.js', | |
base + 'vendors/**/*.js', | |
], | |
build_js_vendor: './'+base + '/vendors', | |
js : [ | |
base + 'assets/js/main.js' | |
], | |
build_js: './' + base + 'assets/js/', | |
css: [ | |
base + 'assets/css/*.css', | |
], | |
scss: [ | |
base + 'assets/scss/**/*.scss', | |
], | |
build_scss: './' + base + 'assets/css/', | |
img: [ | |
base + 'assets/images/*.png', | |
base + 'assets/images/*.jpg' | |
], | |
build_img: './'+ base + 'assets/images/' | |
}; | |
return config; | |
}; | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment