Skip to content

A Laravel Mix extension that provides a copy method that can watch for not only changes, but also additions and deletions.

License

Notifications You must be signed in to change notification settings

dsktschy/laravel-mix-copy-watched

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Laravel Mix Copy Watched npm version GitHub license

This extension provides a copy method that can watch for not only changes but also additions and deletions.

Installation

With laravel-mix@>=6

$ npm install --save-dev laravel-mix-copy-watched

With laravel-mix@<6

$ npm install --save-dev laravel-mix-copy-watched@2

Usage

const mix = require('laravel-mix')

require('laravel-mix-copy-watched')

mix.copyWatched(
  'src/images',
  'dist/images',
  { base: 'src/images' }
)

API

copyWatched(from, to, options)

This method has the same usage as the copy and copyDirectory methods.

from

Type: string | string[]

Paths or glob patterns to files and directories to be copied.

mix.copyWatched('from.png', 'to')
mix.copyWatched('from/**/*.txt', 'to', { base: 'from' })
mix.copyWatched('from/**/*.{jpg,jpeg,png,gif}', 'to', { base: 'from' })
mix.copyWatched(['from1.jpg', 'from2.webp'], 'to')

to

Type: string

Destination path for copied files and directories.

options

Type: object

Contains the following properties.

base

Type: string
Default: ''

When a path to a directory is set, the directory will be copied with the hierarchical structure kept.

// src/images/foo.png -> dist/foo.png
mix.copyWatched(
  'src',
  'dist'
)

// src/images/foo.png -> dist/images/foo.png
mix.copyWatched(
  'src',
  'dist',
  { base: 'src' }
)
dot

Type: boolean
Default: false

If set to true, files and directories whose names start with a dot will be copied.

// src/.foorc -> No output
mix.copyWatched(
  'src',
  'dist',
  { base: 'src' }
)

// src/.foorc -> dist/.foorc
mix.copyWatched(
  'src',
  'dist',
  {
    base: 'src',
    dot: true
  }
)

copyDirectoryWatched(from, to, options)

This method is an alias for the copyWatched method.

About

A Laravel Mix extension that provides a copy method that can watch for not only changes, but also additions and deletions.

Resources

License

Stars

Watchers

Forks

Sponsor this project

 

Packages

No packages published