Skip to content

Instantly share code, notes, and snippets.

@hnxvc
Last active July 5, 2016 12:41
Show Gist options
  • Save hnxvc/c9e477959a12986b38dd8fa4040a303a to your computer and use it in GitHub Desktop.
Save hnxvc/c9e477959a12986b38dd8fa4040a303a to your computer and use it in GitHub Desktop.
gulpconfig.js
'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