Skip to content

Commit

Permalink
Grunt folder as submodule
Browse files Browse the repository at this point in the history
  • Loading branch information
stebrech committed Jan 2, 2017
1 parent bea9c43 commit 06c5d44
Show file tree
Hide file tree
Showing 4 changed files with 91 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitmodules
@@ -0,0 +1,3 @@
[submodule "grunt"]
path = grunt
url = https://github.com/WPZOO/grunt
9 changes: 9 additions & 0 deletions Gruntfile.js
@@ -0,0 +1,9 @@
/* global require, process */
module.exports = function( grunt ) {
// Load Grunt plugin configurations
require('load-grunt-config')(grunt, {
data: {
pkg: grunt.file.readJSON('package.json')
}
});
};
1 change: 1 addition & 0 deletions grunt
Submodule grunt added at 98bf17
78 changes: 78 additions & 0 deletions package.json
@@ -0,0 +1,78 @@
{
"name": "ant",
"capitalname": "Ant",
"description": "Ant Starter Theme by WPZOO",
"author": "Stefan Brechbühl",
"homepage": "https://wpzoo.ch/en/",
"version": "1.0.0",
"copyright": "2016",
"license": "GPL-2.0+",
"private": true,
"contributors": [
{
"name": "WPZOO",
"url": "wpzoo.ch"
},
{
"name": "Stefan Brechbühl",
"url": "pixelstrol.ch"
},
{
"name": "Ulrich Pogson",
"url": "ulrich.pogson.ch"
}
],
"directories": {
"js": "./js",
"sass": "./sass",
"css": "",
"build": "./build",
"lite": "../penguin/"
},
"theme": {
"name": "AntStarterTheme",
"uri": "http://wpzoo.ch/themes/penguin/",
"description": "Ant Starter Theme by WPZOO",
"author": "WPZOO",
"authoruri": "http://wpzoo.ch",
"license": "GPL-2.0+",
"licenseuri": "http://www.gnu.org/licenses/gpl-2.0.html",
"textdomain": "ant_theme",
"domainpath": "/languages",
"tags": "one-column, two-columns, three-columns, four-columns, left-sidebar, right-sidebar, grid-layout, flexible-header, accessibility-ready, buddypress, custom-background, custom-colors, custom-header, custom-menu, custom-logo, editor-style, featured-image-header, featured-images, footer-widgets, front-page-post-form, full-width-template, microformats, post-formats, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready, blog, e-commerce, education, entertainment, food-and-drink, holiday, news, photography, portfolio"
},
"bugs": {
"url": "https://github.com/WPZOO/Ant/issues",
"email": "support@wpzoo.ch"
},
"pot": {
"reportmsgidbugsto": "WPZOO Translations <translations@wpzoo.ch>",
"lasttranslator": "WPZOO Translations <translations@wpzoo.ch>",
"languageteam": "WPZOO Translations <translations@wpzoo.ch>",
"type": "wp-theme"
},
"repository": {
"type": "git",
"url": "https://github.com/WPZOO/penguin-gold.git"
},
"devDependencies": {
"autoprefixer": "*",
"grunt": "*",
"grunt-banner": "*",
"grunt-checktextdomain": "*",
"grunt-contrib-copy": "*",
"grunt-contrib-cssmin": "*",
"grunt-contrib-imagemin": "*",
"grunt-contrib-sass": "*",
"grunt-contrib-uglify": "*",
"grunt-contrib-watch": "*",
"grunt-exec": "*",
"grunt-newer": "*",
"grunt-replace": "*",
"grunt-rtlcss": "*",
"grunt-wp-css": "*",
"grunt-wp-i18n": "*",
"grunt-postcss": "*",
"load-grunt-config": "*"
}
}

0 comments on commit 06c5d44

Please sign in to comment.