Questions tagged [gulp-minify-css]

A Gulp plugin that minifies css with clean-css

A simple gulp plugin, which means it's nothing more than a thin wrapper around clean-css.


gulp-minify-css has been deprecated in favor of gulp-clean-css

20 questions
0
votes
1 answer

TypeError: has no method 'isAbsolute'

I want to minify any css in my folder, where i use gulp-clean-css plugin for gulp. My code is: gulp.task('CSS-Pack', function () { return gulp.src(['Content/App.css', './Content/ApprovalForm.css']) …
0
votes
0 answers

All LESS files are not getting compiled

How to get base.less minified file compiled in gulp and import it in main.ts
mahil
  • 33
  • 10
0
votes
2 answers

Gulp CSS task not overwriting existing CSS

var paths = { css: './public/apps/user/**/*.css' } var dest = { css: './public/apps/user/css/' } // Minify and concat all css files gulp.task('css', function(){ return gulp.src(paths.css) .pipe(concatCSS('style.css')) …
Nemanja
  • 37
  • 5
0
votes
1 answer

how do I get gulp to watch both autoprefixer and minify?

my folder structure consists of a directory called "production" which houses style.css, the file that I'm writing in... I have another directory called "css" which is the destination for my autoprefixed style.css file. The watch task I have set up…
Todd
  • 3
  • 2
-1
votes
1 answer

gulp maintain same destination path as in the source

I have a below angular folder structure . I want to uglify/minify the js and html files. Finally I want the same folder structure is maintained in the "build" folder. How can I do this in gulp? client views index.html …
JavaUser
  • 25,542
  • 46
  • 113
  • 139
1
2