gulp-inline icon indicating copy to clipboard operation
gulp-inline copied to clipboard

Results 16 gulp-inline issues
Sort by recently updated
recently updated
newest added

Today I started using gulp-inline for my work, however, it gave me an error, that it has a dependency on a package called gulp-util, which in its place is deprecated...

Gulp-util is no longer used by gulp-inline and has been deprecated. Removing here to remove security vulnerability caused by transitive dependency [email protected].

I'm running this on an index.html generated by angular-cli (`ng build`): ``` let gulp = require('gulp') let inline = require('gulp-inline') gulp.task('inline', async function () { await gulp.src('dist/index.html') .pipe(inline({ base: 'dist/',...

source: ``` Document ``` after inline ``` Document body {} ``` The last line is unnecessary

I was struggling to keep self-closing tags for xslt syntax. Since gulp-inline is based on cheerio.js it would be great if we could pass cheerio specific options from inside a...

I am finding that certain html and php markup is being converted when running inline for svgs. The main issue is converting html and html strings in php variables to...

We rename our *.js files for cache busting, e.g. the file `my-file.js` becomes `my-file-.js`. Today, it's not possible to exclude files from `gulp-inline` without knowing their precise filename. Hence, it...

``` js var inline = require('gulp-inline') var processedContent = inline.sync(content, baseUrl, options); //or var processedVinylFile = inline.sync(vinylFile, options); ``` It is useful for some situation. F.e. if I process`index.html` I...