'use strict'; | |
var gulp = require('gulp'), | |
toolkit = require('gulp-wp-toolkit'); | |
require('gulp-stats')(gulp); | |
toolkit.extendConfig({ | |
theme: { | |
name: "Infinity Pro", | |
homepage: "http://my.studiopress.com/themes/infinity/", | |
description: "This is the Infinity Pro theme created for the Genesis Framework.", | |
author: "StudioPress", | |
authoruri: "http://www.studiopress.com/", | |
version: "1.1.3", | |
tags: "one-column, two-columns, left-sidebar, right-sidebar, accessibility-ready, custom-background, custom-colors, custom-header, custom-menu, e-commerce, featured-images, footer-widgets, full-width-template, sticky-post, theme-options, threaded-comments, translation-ready", | |
template: "genesis", | |
license: "GPL-2.0+", | |
licenceuri: "http://www.gnu.org/licenses/gpl-2.0.html", | |
textdomain: "infinity-pro" | |
}, | |
css: { | |
scss: { | |
'style-front': { | |
src: 'develop/scss/style-front.scss', | |
dest: 'css/' | |
} | |
} | |
}, | |
js: { | |
'infinity-pro': [ | |
'develop/js/responsive-menus.js', | |
'develop/js/match-height.js', | |
'develop/js/global.js' | |
], | |
'front-page': [ | |
'develop/js/front-page.js' | |
] | |
}, | |
server: { | |
url: 'infinitypro.localhost' | |
} | |
}); | |
toolkit.extendTasks(gulp, /* Gulp task overrides. */); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment