File tree Expand file tree Collapse file tree 3 files changed +2
-16
lines changed
Expand file tree Collapse file tree 3 files changed +2
-16
lines changed Original file line number Diff line number Diff line change 5454 "@nodelib/fs.walk" : " ^1.2.3" ,
5555 "glob-parent" : " ^5.1.2" ,
5656 "merge2" : " ^1.3.0" ,
57- "micromatch" : " ^4.0.2" ,
58- "picomatch" : " ^2.2.1"
57+ "micromatch" : " ^4.0.4"
5958 },
6059 "scripts" : {
6160 "clean" : " rimraf out" ,
Original file line number Diff line number Diff line change @@ -2,7 +2,6 @@ import * as path from 'path';
22
33import * as globParent from 'glob-parent' ;
44import * as micromatch from 'micromatch' ;
5- import * as picomatch from 'picomatch' ;
65
76import { MicromatchOptions , Pattern , PatternRe } from '../types' ;
87
@@ -114,7 +113,7 @@ export function expandBraceExpansion(pattern: Pattern): Pattern[] {
114113}
115114
116115export function getPatternParts ( pattern : Pattern , options : MicromatchOptions ) : Pattern [ ] {
117- let { parts } = picomatch . scan ( pattern , {
116+ let { parts } = micromatch . scan ( pattern , {
118117 ...options ,
119118 parts : true
120119 } ) ;
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments