Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/avrongols/simple-gulp-template
A simple gulp template
https://github.com/avrongols/simple-gulp-template
gulp gulpjs nodejs
Last synced: 30 days 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 (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2022-02-20T21:16:38.000Z (almost 3 years ago)
- Last Synced: 2024-11-16T09:32:44.875Z (3 months ago)
- Topics: gulp, gulpjs, nodejs
- Language: JavaScript
- Homepage:
- Size: 84 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.## Requirements
- [Node.js](http://nodejs.org)
- [Gulp.js](http://gulpjs.com)## 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-script dev
```Build production version with optimization and minification:
```
npm run-script build
```