vite-plugin-restart icon indicating copy to clipboard operation
vite-plugin-restart copied to clipboard

Does it support * wildcards

Open hooray opened this issue 4 years ago • 1 comments

I see in the example project that it is supported *.* syntax, but in my actual use, using *.js does not work, just like this:

ViteRestart({
        restart: [
            '.env.development',
            'vite/plugins/*.js'
        ]
    })

hooray avatar Jan 24 '22 07:01 hooray

This package uses micro match. You probably meant to use vite/plugins/**/*.js

FossPrime avatar Nov 09 '22 15:11 FossPrime