Skip to content

Instantly share code, notes, and snippets.

@craigsimps
Created May 18, 2018 11:01
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 craigsimps/bf961a676c538cc5e5fc38b369ddc67c to your computer and use it in GitHub Desktop.
Save craigsimps/bf961a676c538cc5e5fc38b369ddc67c to your computer and use it in GitHub Desktop.
'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