0.1.5 • Published 9 years ago
npm_tester v0.1.5
WP-Gulp
A simple gulpfile for WordPress theme development
Install Dependancies -- Node JS, NPM, Gulp, Yarn, and LiveReload
- Install Node JS. To see if Node is already installed, run
node -vfrom the command line. NOTE: if your version of Node is less than 5.0, you'll need to update it. - Install Node Package Manager (NPM). Follow these instructions for Windows, Mac, or Linux.
- Globally install gulp:
npm install gulp -g - Globally install yarn:
npm install yarn -g - Add and activate LiveReload -- Chrome, Firefox.
WP-Gulp Installation
- From the 'wp-content' directory of your WordPress site, run the following command:
git clone https://github.com/wphogan/wp-gulp.git - Enter the new 'wp-gulp' directory and run
yarn install. - Once installed, open
gulpfile_config.jsand replacecustom_themewith the name of your theme. - Make sure the SCSS, CSS, and JS directories listed in
gulpfile_config.jsreflect your theme's folder structure.
WP-Gulp Tasks
Default Gulp task: gulp
From the 'wp-gulp' directory, run gulp. This task will watch for file changes. If a SCSS file is edited, it runs the gulp styles task (see below) and reloads the changes in the browser via LiveReload.
Other Gulp tasks:
gulp styles- compile, auto-prefix, and minify SCSS files in the Sass folder into a single CSS file. A source map is added to directory of the CSS file. Errors in SCSS code will produce a desktop alert (Mac only).
gulp js- concatenate and minify all non-minified javascript files in the theme's javascript directory. Newly minified files are suffixed with
.min.js.
- concatenate and minify all non-minified javascript files in the theme's javascript directory. Newly minified files are suffixed with
gulp images- optimize any images in the theme's images folder
gulp comb- "combs" the SCSS file -- organizes properties, adds and removes spaces and tabs as necessary, etc. For full configuration list, see
config/csscomb_config.jsonin thewp-gulpdirectory.
- "combs" the SCSS file -- organizes properties, adds and removes spaces and tabs as necessary, etc. For full configuration list, see
gulp lint- checks SCSS file primarily for mergeable selectors and duplicate properties. For full configuration list, see
config/sass_lint_config.ymlin thewp-gulpdirectory.
- checks SCSS file primarily for mergeable selectors and duplicate properties. For full configuration list, see
gulp clean- sequentially runs
gulp comb,gulp lint, andgulp images
- sequentially runs
Tips for Quick WP-Gulp Installation and Execution (Mac)
This will save you time installing and running WP-Gulp. It allows you to run the installation with a single command from the site's root directory. It also allows you to run the default gulp task from the root directory.
Edit your bash_profile:
open ~/.bash_profileAnd add the following code to it:
alias gulprun='cd wp-content/wp-gulp && gulp'
alias gulpnew='cd wp-content/ && git clone https://github.com/wphogan/wp-gulp && cd wp-gulp && open gulpfile_config.js && yarn install'Close and reopen the terminal window. With this new bash_profile, entering gulpnew from the root of a WordPress site will install WP-Gulp within the wp-content folder.
It'll also allow you to run the default gulp task 'gulp' from the site's root by entering gulprun.