Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/oddbird/buntpress
https://github.com/oddbird/buntpress
Last synced: 8 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/oddbird/buntpress
- Owner: oddbird
- Created: 2015-10-28T07:38:30.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2020-09-05T18:55:39.000Z (about 4 years ago)
- Last Synced: 2024-10-29T18:48:47.161Z (16 days ago)
- Language: PHP
- Size: 1.29 MB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Getting Started
### Prerequisites
This theme uses:
[Node](http://nodejs.org/)
[Gulp CLI](https://github.com/gulpjs/gulp-cli) (`npm install -g gulp-cli`).## Development
After you've installed and activated me. It's time to setup Gulp.
1) From the command line, change directories to your new theme directory
```bash
cd /your-project/wp-content/themes/buntpress
```2) Install Node dependencies
```bash
npm install
```### Gulp Tasks
From the command line, type any of the following to perform an action:
`gulp watch` - Automatically handle changes to CSS, JS, SVGs, and image sprites. Also kicks off BrowserSync.
`gulp icons` - Minify, concatenate, and clean SVG icons.
`gulp i18n` - Scan the theme and create a POT file
`gulp sass:lint` - Run Sass against WordPress code standards
`gulp scripts` - Concatenate and minify javascript files
`gulp sprites` - Generate an image sprite and the associated Sass (sprite.png)
`gulp styles` - Compile, prefix, combine media queries, and minify CSS files
`gulp` - Runs the following tasks at the same time: i18n, icons, scripts, styles, sprites