gulp-ext-replace
gulp-ext-replace copied to clipboard
Small gulp plugin to change a file's extension
In your readme: > If you have a slightly more involved extension you'd like to replace like .min.css, you can tell the plugin to replace that instead of the default...
source path "bower_components\video.js\dist\video.js" .pipe(extReplace('.min.js')) result path "bower_components*_video.min.js_*\dist\video.js" replaced in the wrong place
I am using gulp-save to save and restore the content and write to different files. My approach is to have source.js create three different files: [source.nl.js, source.de.js, source.en.js]. But calling...
I needed to remove the extension so I added a new boolean parameter, figured id submit a pull request incase others wanted to do the same.