https://github.com/avrongols/simple-gulp-template
A simple gulp template
https://github.com/avrongols/simple-gulp-template
gulp gulpjs nodejs
Last synced: 5 months ago
JSON representation
A simple gulp template
- Host: GitHub
- URL: https://github.com/avrongols/simple-gulp-template
- Owner: avrongols
- Created: 2022-02-20T02:48:40.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2025-07-26T01:01:52.000Z (about 1 year ago)
- Last Synced: 2025-07-26T07:54:51.300Z (about 1 year ago)
- Topics: gulp, gulpjs, nodejs
- Language: JavaScript
- Homepage:
- Size: 153 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Simple gulp template
A simple [gulp](http://gulpjs.com) template that provides:
- HTML files inclusion.
- SCSS to CSS conversion.
- HTML, JS and CSS minification and concatenation.
- Images minification.
- [BrowserSync](http://browsersync.io) support.
## Quickstart
Clone the repository and install local dependencies:
```
git clone https://github.com/avrongols/simple-gulp-template.git
cd
npm install
```
Start working on a project with [BrowserSync](http://browsersync.io):
```
npm start
```
Build development version without optimization and minification:
```
npm run dev
```
Build production version with optimization and minification:
```
npm run build
```