https://github.com/kailoon/wordpress-theme-dev-with-gulp
Based on TwentytwentyOne theme but using Gulp instead.
https://github.com/kailoon/wordpress-theme-dev-with-gulp
browser-sync gulp gulp-clean-css gulp-concat gulp-sass gulp-uglify starter-kit theme-development wordpress
Last synced: 6 days ago
JSON representation
Based on TwentytwentyOne theme but using Gulp instead.
- Host: GitHub
- URL: https://github.com/kailoon/wordpress-theme-dev-with-gulp
- Owner: kailoon
- Created: 2021-03-05T06:21:16.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-03-05T06:29:21.000Z (about 5 years ago)
- Last Synced: 2025-07-08T18:08:15.468Z (11 months ago)
- Topics: browser-sync, gulp, gulp-clean-css, gulp-concat, gulp-sass, gulp-uglify, starter-kit, theme-development, wordpress
- Language: SCSS
- Homepage:
- Size: 104 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# WordPress Themes Dev with Gulp
Based on TwentytwentyOne theme but using Gulp instead.
## Scripts
**Start develop** with [gulp-sass](https://www.npmjs.com/package/gulp-sass) and hot reload with [browsersync](https://www.npmjs.com/package/browser-sync). It will watch the changes of `php` and `scss` files.
```
npm run Start
```
Build
Build `css` and `js` files using [minify](https://www.npmjs.com/package/gulp-clean-css) and [uglify](https://www.npmjs.com/package/gulp-uglify). The `js` will be [concated](https://www.npmjs.com/package/gulp-concat).
```
npm run build
```