Skip to content
forked from ixkaito/bathe

Blank WordPress theme for Gulp. Supports Sass, Autoprefixer, Compass, Browserify, Imagemin, BrowserSync, Bourbon...

Notifications You must be signed in to change notification settings

marcofabrika/bathe

 
 

Repository files navigation

Bathe

Blank WordPress Theme for Gulp

Version

0.2.0

Features

  • Gulp
  • Sass
  • Autoprefixer
  • Compass
  • Imagemin
  • Browserify
  • Watchify
  • UglifyJS
  • Browser-Sync
  • Bourbon
  • Neat
  • Bitters

Bourbon is a lightweight Sass framework. If you don't use it, it will do nothing to your CSS file.

Usage

If you don't use Gulp, Sass, or Compass, you can just use this theme like others. Nothing else is necessary except WordPress Environment.

Using Gulp to develop in Bathe

1 Install Node.js

https://nodejs.org/

Instead, the easiest way is using Homebrew.

$ brew install node

2. Install Gulp globally

$ npm install --global gulp

3. Install Sass and Compass (Optional)

$ gem install compass

This will install both Ruby Sass and Compass. If you only use Sass but not Compass, the Ruby Sass is not require.

4 Clone this repo in WordPress theme directory

$ git clone https://github.com/ixkaito/bathe.git && cd bathe

You can also download the .zip file from the following URL.

https://github.com/wp-bathe/bathe/archive/master.zip

5. Install Node modules

$ npm install

6. Change the site url

Change siteurl in gulpconfig.json for your environment. The default siteurl is wocker.dev for Wocker.

7. Run Gulp

$ gulp

Configurations and Defaults

You can change the configuration by editing gulpconfig.json

siteurl

An EXISTING vhost.

default: "wocker.dev"
options: string
example: "localhost:8888"

tasks

Tasks to run when you exec gulp command.

sass

To compile Sass.

default: true
options: boolean (true / false)

compass

To use compass. If true, Bathe will ignore the above setting of sass.

default: false
options: boolean (true / false)

browserify

To use Browserify.

default: true
options: boolean (true / false)

imagemin

To minify images.

default: true
options: boolean (true / false)

browser-sync

To keep browsers in sync with file changes.

default: true
options: boolean (true / false)

watch

To watch files and run tasks on file changes.

paths

Settings about paths.

assets

The directory to gather all assets.

default: "./assets"
options: string
example: "./" (directly under the theme direcotry)

css

The CSS destination directory for Sass or Compass.

default: "css"
options: string
example: "stylesheets"

js

The JavaScript destination directory for Browserify.

default: "js"
options: string
example: "javascripts"

images

The destination directory of compressed image files for Imagemin.

default: "images"
options: string
example: "img"

sass

The directory of Sass files.

default: "_sass"
options: string
example: "src/sass"

jsSrc

The directory of JavaScript source files to bundle up by Browserify.

default: "_js"
options: string
example: "src/js"

imageSrc

The directory of image source files to compress.

default: "_images"
options: string
example: "src/images"

sass

Sass settings.

outputStyle

The output style of Sass.

default: "compressed"
options: "expanded", "nested", "compact", "compressed"

autoprefixer

Autoprefixer settings.

browsers

List of browsers, which are supported in your theme.

default: ["> 1%", "last 2 versions", "Firefox ESR"]
options: array. See Browserslist docs for available queries. example: ["> 5%", "last 2 versions", "IE 8"]

compass

Compass settings.

config

The config file for Compass.

default: "./config.rb"
options: string
example: "./myconfig.rb"

style

The output style of Compass.

default: "compressed"
options: "expanded", "nested", "compact", "compressed"

comments

Show line comments or not.

default: false
options: boolean (true / false)

js

JavaScript settings.

src

File name(s) of JavaScript source file(s).

default: ["main.js"]
options: array
example: ["pluginA.js", "pluginB.js", "main.js"]

dist

The distribution JavaScript file name.

default: "main.js"
options: string
example: "script.js"

Notes

Bathe doesn't load the default theme stylesheet "style.css" by default.

License

GPLv2 or later

Copyright

© 2015 Kite

About

Blank WordPress theme for Gulp. Supports Sass, Autoprefixer, Compass, Browserify, Imagemin, BrowserSync, Bourbon...

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • CSS 81.2%
  • JavaScript 9.0%
  • PHP 8.6%
  • Ruby 1.2%