WordPress site for Beyond Parallel. Developed from the _s starter theme.
- New features & updates should be created on individual branches. Branch from
master - When ready, submit pull request back into
master. Rebase the feature branch first. - TravisCI will automatically deploy changes on
masterto the staging site - After reviewing your work on the staging site, use WPEngine to move from staging to live
This project uses Gulp to compile the SASS files & run Browsersync. PostCSS is also used to run Autoprefixer & CSS Nano.
Before running, you must set up a .env file with your local development URL. See the example file for additional information.
To run:
- Run
$ npm installin the root directory - Run
$ npm startto run the development task, which watches the WP theme directory for changes & compiles the SCSS files. - Changes to the Gulp tasks can be made by modifying the
gulp.config.js.
To build for production:
- Run
$ npm run build