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

Inline flagged js & css sources.

Results 19 gulp-inline-source issues
Sort by recently updated
recently updated
newest added

To the code: ``` #app{ background-image: url('../img/background.jpg'); } ``` The image background is not found, to work: ``` #app{ background-image: url('img/background.jpg'); } ``` To solved the problem remove _**../**_

iclude js dosn't work :(

`` Can't work as I want, and throw error: ``` events.js:160 throw er; // Unhandled 'error' event ^ Error: ENOENT: no such file or directory, open 'C:\Users\HZY\Desktop\wordsdance\lib\https:\cdn.bootcss.com\normalize\4.2.0\normalize.min.css' at Error (native)...

It would be awesome if urls in stylesheets would be rewritten when embedded. ``` css .div { background: url('../images/background.jpg'); } ``` should become ``` css .div { background: url('static/images/background.jpg'); }...

/webroot/gulpfile.js: ``` gulp.task( 'inline:templates', function () { var inlineSourceOptions = { // attribute: 'inline', compress: false, pretty: true }; return gulp.src( './build/templates/**/*.html', { base: './build/foo/' } ) .pipe( $.inlineSource( inlineSourceOptions...

Please provide support for inlining script tags with type="application/json" or type="application/ld+json". When using other types in script tag like application/json, then inlining will not work. Please include support for inlining...

I have a simple testing folder: ``` ./ a.js gulpfile.js test.jade ``` a.js ``` javascript console.log('Hello!'); ``` gulpfile.js ``` javascript var gulp = require('gulp'); var jade = require('gulp-jade'); var inlineSouce...

Add the option that allows to place `````` at the end of `````` instead of ``````. Reasoning: a react app throws this error [https://legacy.reactjs.org/docs/error-decoder.html/?invariant=299](https://legacy.reactjs.org/docs/error-decoder.html/?invariant=299). The problem is, app renders page...

Hi there this is a long shot but, hope someone can help, I am using gulp-inline-source & gulp-nunjucks-render (https://github.com/carlitoplatanito/gulp-nunjucks-render) plus browserSync to show the updated UI The plugin does something,...