This Gulpfile is used to compile Sass files and convert images to WebP format for the Project Name web application. It uses Gulp to automate these tasks and save time during development. The Gulpfile includes three tasks: compileStyles to compile Sass files, watchSass to watch for changes to Sass files and automatically compile them, and imgConvert to convert all images to WebP format. The Gulpfile uses gulp-sass to compile Sass files and gulp-webp to convert images to WebP format.
- Clone the repository to your local machine.
- Install dependencies by running
npm install
in the project directory.
To compile Sass files, run:
gulp compileStyles
To watch for changes to Sass files and automatically compile them, run:
gulp watchSass
To convert all images to WebP format, run:
gulp imgConvert
compileStyles
: Compiles Sass files into CSS.watchSass
: Watches for changes to Sass files and automatically compiles them.imgConvert
: Converts all images to WebP format.
This project is licensed under the MIT License.