Skip to content
This repository was archived by the owner on Feb 8, 2019. It is now read-only.

Project Settings

Charlie Rosenbury edited this page Jan 11, 2015 · 2 revisions
{
  "theme_path": "./dist/theme",
  "css_path": "./src/theme/sass/style.scss",
  "build_cmd": "gulp build",
  "build_cmd_dir": "./src",
  "build_dir": "www"
}

Theme Path

"theme_path": "./dist/theme"

Required

This is the path to your theme directory relative to your HelperPress config files. It should contain the distributable theme source. If you use a build tool, it will always be executed before this directory is used for any HelperPress processes.

CSS Path

"css_path": "./src/theme/sass/style.scss"

Required

This is the path to your theme's primary stylesheet source. If you are using a CSS preprocessor, this should be the path to the preprocessor's source.

Build Command

"build_cmd": "gulp build"

Default: false

If using a build tool for your theme's assets, specify the command to be executed via shell. If you aren't using a build tool, this should be set to false to be skipped.

Build Command Directory

"build_cmd_dir": "./src",

Default: "./"

If using a build tool for your theme's assets, specify the directory in which that command should be executed.

Build Directory

  "build_dir": "www"

Default: "www"

The name of the directory to compile the functional WordPress installation into.

Clone this wiki locally