The front-end starter template powered by Gulp, designed to speed up the development workflow, support SASS, PUG, KIT, JavaScript, image optimization, and SVG sprite generation.
- SASS: Compile SCSS files into CSS.
- PUG: Convert PUG templates into HTML.
- KIT: Support for KIT templating.
- JavaScript: Concatenate and minify JS files.
- Image Optimization: Compress images for faster load times.
- SVG Sprite: Generate SVG sprites for efficient SVG usage.
- Live Reload: Automatically reload the browser on file changes.
Delorean-Gulp-Template/
├── build/ # Compiled files
├── dist/ # Distribution-ready files
├── src/ # Source files
│ ├── sass/ # SASS stylesheets
│ ├── pug/ # PUG templates
│ ├── kit/ # KIT templates
│ ├── js/ # JavaScript files
│ ├── images/ # Image assets
│ └── svg/ # SVG files
├── gulpfile.js # Gulp configuration
├── package.json # Project metadata and dependencies
└── .gitignore # Git ignore rules
-
Clone the repository:
git clone https://github.com/Grenvals/Delorean-Gulp-Template.git cd Delorean-Gulp-Template
-
Install dependencies:
npm install
-
Start development server:
gulp
This will initiate the development server with live reload functionality.
-
Build for production:
gulp build
This will compile and optimize the project for production deployment.
This project is open-source and available under the MIT License.