Skip to content

wpleeds/wp-meetup-theme

Repository files navigation

Brower support.

Currently we support the last 2 versions of major browsers. IE10+.

Development Guidelines

The theme uses gulp to run various tasks. This includes compiling CSS, bundling JS and minifiying images.

  • Theme styles use SCSS and are stored in assets/src/styles.
  • Theme JavaScript files are in assets/src/scripts. Webpack is used to bundle theme.js.
  • Theme Images files are in assets/src/images.
  • Compiled/proccessed are be kept in assets/dist.
  • You should never include files from assets/src directly within the theme.
  1. Reqirements: NPM and Gulp CLI
  2. npm install to install all required dependencies.
  3. gulp to run all the tasks required to build the theme.
  4. gulp watch to watch for changes, and run required tasks automatically.