fix(js): copy assets handler should handle ignore globs on windows (#23065)

This commit is contained in:
Craigory Coppola 2024-04-30 14:14:54 -04:00 committed by GitHub
parent 8631b40d54
commit c09f70f9a0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,5 +1,5 @@
import { minimatch } from 'minimatch';
import * as path from 'path';
import * as path from 'node:path/posix';
import * as fse from 'fs-extra';
import ignore from 'ignore';
import * as fg from 'fast-glob';