Questions tagged [gulp-sourcemaps]

gulp-sourcemaps is a gulp plugin that adds support for source maps.

gulp-sourcemaps is a gulp plugin that adds support for source maps. The plugin allows to write both inline source maps and external source map files, to load existing source maps, to handle source maps from different directories. It is possible to use other plugins in the pipeline between calls to init and write functions of gulp-sourcemaps, but these other plugins need to have support for gulp-sourcemaps. The list of gulp plugins that support gulp-sourcemaps: https://github.com/floridoo/gulp-sourcemaps/wiki/Plugins-with-gulp-sourcemaps-support.

168 questions
0
votes
0 answers

Gulp BootstrapCSS source maps

I'm trying to generate the following CSS Source Map files, through gulp.js for the BootstrapCSS library. My gulp task is as folows: bower = require 'main-bower-files' sourcemaps = require 'gulp-sourcemaps' cssmin = require…
ChrisGeo
  • 3,807
  • 13
  • 54
  • 92
0
votes
1 answer

Unable to load ionic css file(s) compiled from sass (.scss) using gulp-sass

I'm trying to move an application over from a Grunt build to Gulp. My Gulp build generates a ionic.css file which I attempt to load with a link tag in my index.html. I get an error in my chrome inspector that the file is not found at that path even…
Brad W
  • 2,540
  • 2
  • 18
  • 28
-1
votes
3 answers

gulp sass sourcemaps and autoprefixer not working

I am unable to get the autoprefixer working with gulp sass. Here is my gulpfile.js: 'use strict'; var gulp = require('gulp'); var sass = require('gulp-sass'); var sourcemaps = require('gulp-sourcemaps'); var autoprefixer =…
Peter
  • 10,492
  • 21
  • 82
  • 132
1 2 3
11
12