laravel-elixir-replace2

1.0.2 • Public • Published

laravel-elixir-replace2

A gulp-replace wrapper for Laravel Elixir 6 or higher.

Installation

npm install --save-dev laravel-elixir-replace2

Usage

const elixir = require('laravel-elixir');

require('laravel-elixir-replace2');

elixir(mix => {
    mix.replace('node_modules/foo/bar.css', '../images/', '../img/', 'build');
});

The above example will replace all '../images/' in file node_modules/foo/bar.css to '../img/' and then save the processed file to build/bar.css.

API

replace(src, search, replacement[, output[, options]])

Note: src and output are relative to the project's root directory.

  • src string|array The source files or directories.
  • search string|RegExp The string or regex pattern to search for.
  • replacement string|function The replacement string or function.
  • output string (Optional) The output file or directory. Default is the same as the src.
  • options object (Optional) The options for gulp-replace. You can access the global options with elixir.config.replace. Default options is:
    { 
      skipBinary: true
    }

Readme

Keywords

Package Sidebar

Install

npm i laravel-elixir-replace2

Weekly Downloads

0

Version

1.0.2

License

MIT

Last publish

Collaborators

  • elfsundae