Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mahmoudahmadosman/gulpjs-project
Gulp.js small project
https://github.com/mahmoudahmadosman/gulpjs-project
css3 gulpjs html5 javascript sass
Last synced: about 1 month ago
JSON representation
Gulp.js small project
- Host: GitHub
- URL: https://github.com/mahmoudahmadosman/gulpjs-project
- Owner: MahmoudAhmadOsman
- Created: 2019-07-24T15:29:34.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-03-01T15:28:04.000Z (over 1 year ago)
- Last Synced: 2024-10-11T23:41:30.885Z (about 1 month ago)
- Topics: css3, gulpjs, html5, javascript, sass
- Language: JavaScript
- Homepage:
- Size: 623 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 13
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Gulpjs Project
Gulp.js demo project```bash
const gulp = require('gulp'),
concat = require('gulp-concat'),
autoprefixer = require('gulp-autoprefixer'),
sass = require('gulp-sass'),
sass = require('gulp-pug'),
notify = require("gulp-notify"),
watch = require('gulp-watch'),
uglify = require('gulp-uglify'),
zip = require('gulp-zip');gulp.task('sass-files', function () {
return gulp.src('project/css/main.scss')
.pipe(sass())
.pipe(uglify())
.pipe(autoprefixer ('last 2 versions'))
.pipe(concat('main.css'))
.pipe(gulp.dest('dist/css'))
});```