Questions tagged [gulp-minify]

19 questions
0
votes
0 answers

gulp-minify causes breaking sass task

I'm trying to write modular Ionic1.x app. I was going to compile & concat & minify javascript and scss files. However, when I use minify function at compress task, I got following error on sass task. Muhammets-MacBook-Pro-3:x-app MmtBkn$…
Mohamed
  • 1,251
  • 3
  • 15
  • 36
0
votes
0 answers

Gulp - Compile and Minify .ts files

I trying to write a task for Gulp for my "Task Runner Explore" in Visual Studio but get stacked. What I want is just to compile my .ts files, minify it and put inside "wwwroot/app" folder. I have this task: var minify = require('gulp-minify'); var…
dantey89
  • 2,167
  • 24
  • 37
0
votes
1 answer

Gulp minification to same file

I am working in node js application. I want to minify server js files. Am using gulp for that purpose. var folders = ['business','config','controllers','model','routes','utilities'] gulp.task('minify', function() { …
Anuj K.C.
  • 478
  • 3
  • 10
  • 25
0
votes
1 answer

How Gulp + sourcemaps work for debugging

So I just got set up with Gulp yesterday and after a rocky start I'm well on my way to automating build processes, but I decided to try and do something a teensy bit trickier and suddenly hit another wall. My desired output is to have a minified…
stevendesu
  • 15,753
  • 22
  • 105
  • 182
1
2