minimatch 2.0.6 → 2.0.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +12 -20
- package/README.md +216 -0
- package/browser.js +61 -15
- package/minimatch.js +58 -13
- package/package.json +5 -8
package/LICENSE
CHANGED
|
@@ -1,23 +1,15 @@
|
|
|
1
|
-
|
|
2
|
-
All rights reserved.
|
|
1
|
+
The ISC License
|
|
3
2
|
|
|
4
|
-
|
|
5
|
-
obtaining a copy of this software and associated documentation
|
|
6
|
-
files (the "Software"), to deal in the Software without
|
|
7
|
-
restriction, including without limitation the rights to use,
|
|
8
|
-
copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
-
copies of the Software, and to permit persons to whom the
|
|
10
|
-
Software is furnished to do so, subject to the following
|
|
11
|
-
conditions:
|
|
3
|
+
Copyright (c) Isaac Z. Schlueter and Contributors
|
|
12
4
|
|
|
13
|
-
|
|
14
|
-
|
|
5
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
6
|
+
purpose with or without fee is hereby granted, provided that the above
|
|
7
|
+
copyright notice and this permission notice appear in all copies.
|
|
15
8
|
|
|
16
|
-
THE SOFTWARE IS PROVIDED "AS IS"
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
OTHER DEALINGS IN THE SOFTWARE.
|
|
9
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
10
|
+
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
11
|
+
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
12
|
+
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
13
|
+
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
14
|
+
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
|
|
15
|
+
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,216 @@
|
|
|
1
|
+
# minimatch
|
|
2
|
+
|
|
3
|
+
A minimal matching utility.
|
|
4
|
+
|
|
5
|
+
[](http://travis-ci.org/isaacs/minimatch)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
This is the matching library used internally by npm.
|
|
9
|
+
|
|
10
|
+
It works by converting glob expressions into JavaScript `RegExp`
|
|
11
|
+
objects.
|
|
12
|
+
|
|
13
|
+
## Usage
|
|
14
|
+
|
|
15
|
+
```javascript
|
|
16
|
+
var minimatch = require("minimatch")
|
|
17
|
+
|
|
18
|
+
minimatch("bar.foo", "*.foo") // true!
|
|
19
|
+
minimatch("bar.foo", "*.bar") // false!
|
|
20
|
+
minimatch("bar.foo", "*.+(bar|foo)", { debug: true }) // true, and noisy!
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
## Features
|
|
24
|
+
|
|
25
|
+
Supports these glob features:
|
|
26
|
+
|
|
27
|
+
* Brace Expansion
|
|
28
|
+
* Extended glob matching
|
|
29
|
+
* "Globstar" `**` matching
|
|
30
|
+
|
|
31
|
+
See:
|
|
32
|
+
|
|
33
|
+
* `man sh`
|
|
34
|
+
* `man bash`
|
|
35
|
+
* `man 3 fnmatch`
|
|
36
|
+
* `man 5 gitignore`
|
|
37
|
+
|
|
38
|
+
## Minimatch Class
|
|
39
|
+
|
|
40
|
+
Create a minimatch object by instanting the `minimatch.Minimatch` class.
|
|
41
|
+
|
|
42
|
+
```javascript
|
|
43
|
+
var Minimatch = require("minimatch").Minimatch
|
|
44
|
+
var mm = new Minimatch(pattern, options)
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
### Properties
|
|
48
|
+
|
|
49
|
+
* `pattern` The original pattern the minimatch object represents.
|
|
50
|
+
* `options` The options supplied to the constructor.
|
|
51
|
+
* `set` A 2-dimensional array of regexp or string expressions.
|
|
52
|
+
Each row in the
|
|
53
|
+
array corresponds to a brace-expanded pattern. Each item in the row
|
|
54
|
+
corresponds to a single path-part. For example, the pattern
|
|
55
|
+
`{a,b/c}/d` would expand to a set of patterns like:
|
|
56
|
+
|
|
57
|
+
[ [ a, d ]
|
|
58
|
+
, [ b, c, d ] ]
|
|
59
|
+
|
|
60
|
+
If a portion of the pattern doesn't have any "magic" in it
|
|
61
|
+
(that is, it's something like `"foo"` rather than `fo*o?`), then it
|
|
62
|
+
will be left as a string rather than converted to a regular
|
|
63
|
+
expression.
|
|
64
|
+
|
|
65
|
+
* `regexp` Created by the `makeRe` method. A single regular expression
|
|
66
|
+
expressing the entire pattern. This is useful in cases where you wish
|
|
67
|
+
to use the pattern somewhat like `fnmatch(3)` with `FNM_PATH` enabled.
|
|
68
|
+
* `negate` True if the pattern is negated.
|
|
69
|
+
* `comment` True if the pattern is a comment.
|
|
70
|
+
* `empty` True if the pattern is `""`.
|
|
71
|
+
|
|
72
|
+
### Methods
|
|
73
|
+
|
|
74
|
+
* `makeRe` Generate the `regexp` member if necessary, and return it.
|
|
75
|
+
Will return `false` if the pattern is invalid.
|
|
76
|
+
* `match(fname)` Return true if the filename matches the pattern, or
|
|
77
|
+
false otherwise.
|
|
78
|
+
* `matchOne(fileArray, patternArray, partial)` Take a `/`-split
|
|
79
|
+
filename, and match it against a single row in the `regExpSet`. This
|
|
80
|
+
method is mainly for internal use, but is exposed so that it can be
|
|
81
|
+
used by a glob-walker that needs to avoid excessive filesystem calls.
|
|
82
|
+
|
|
83
|
+
All other methods are internal, and will be called as necessary.
|
|
84
|
+
|
|
85
|
+
## Functions
|
|
86
|
+
|
|
87
|
+
The top-level exported function has a `cache` property, which is an LRU
|
|
88
|
+
cache set to store 100 items. So, calling these methods repeatedly
|
|
89
|
+
with the same pattern and options will use the same Minimatch object,
|
|
90
|
+
saving the cost of parsing it multiple times.
|
|
91
|
+
|
|
92
|
+
### minimatch(path, pattern, options)
|
|
93
|
+
|
|
94
|
+
Main export. Tests a path against the pattern using the options.
|
|
95
|
+
|
|
96
|
+
```javascript
|
|
97
|
+
var isJS = minimatch(file, "*.js", { matchBase: true })
|
|
98
|
+
```
|
|
99
|
+
|
|
100
|
+
### minimatch.filter(pattern, options)
|
|
101
|
+
|
|
102
|
+
Returns a function that tests its
|
|
103
|
+
supplied argument, suitable for use with `Array.filter`. Example:
|
|
104
|
+
|
|
105
|
+
```javascript
|
|
106
|
+
var javascripts = fileList.filter(minimatch.filter("*.js", {matchBase: true}))
|
|
107
|
+
```
|
|
108
|
+
|
|
109
|
+
### minimatch.match(list, pattern, options)
|
|
110
|
+
|
|
111
|
+
Match against the list of
|
|
112
|
+
files, in the style of fnmatch or glob. If nothing is matched, and
|
|
113
|
+
options.nonull is set, then return a list containing the pattern itself.
|
|
114
|
+
|
|
115
|
+
```javascript
|
|
116
|
+
var javascripts = minimatch.match(fileList, "*.js", {matchBase: true}))
|
|
117
|
+
```
|
|
118
|
+
|
|
119
|
+
### minimatch.makeRe(pattern, options)
|
|
120
|
+
|
|
121
|
+
Make a regular expression object from the pattern.
|
|
122
|
+
|
|
123
|
+
## Options
|
|
124
|
+
|
|
125
|
+
All options are `false` by default.
|
|
126
|
+
|
|
127
|
+
### debug
|
|
128
|
+
|
|
129
|
+
Dump a ton of stuff to stderr.
|
|
130
|
+
|
|
131
|
+
### nobrace
|
|
132
|
+
|
|
133
|
+
Do not expand `{a,b}` and `{1..3}` brace sets.
|
|
134
|
+
|
|
135
|
+
### noglobstar
|
|
136
|
+
|
|
137
|
+
Disable `**` matching against multiple folder names.
|
|
138
|
+
|
|
139
|
+
### dot
|
|
140
|
+
|
|
141
|
+
Allow patterns to match filenames starting with a period, even if
|
|
142
|
+
the pattern does not explicitly have a period in that spot.
|
|
143
|
+
|
|
144
|
+
Note that by default, `a/**/b` will **not** match `a/.d/b`, unless `dot`
|
|
145
|
+
is set.
|
|
146
|
+
|
|
147
|
+
### noext
|
|
148
|
+
|
|
149
|
+
Disable "extglob" style patterns like `+(a|b)`.
|
|
150
|
+
|
|
151
|
+
### nocase
|
|
152
|
+
|
|
153
|
+
Perform a case-insensitive match.
|
|
154
|
+
|
|
155
|
+
### nonull
|
|
156
|
+
|
|
157
|
+
When a match is not found by `minimatch.match`, return a list containing
|
|
158
|
+
the pattern itself if this option is set. When not set, an empty list
|
|
159
|
+
is returned if there are no matches.
|
|
160
|
+
|
|
161
|
+
### matchBase
|
|
162
|
+
|
|
163
|
+
If set, then patterns without slashes will be matched
|
|
164
|
+
against the basename of the path if it contains slashes. For example,
|
|
165
|
+
`a?b` would match the path `/xyz/123/acb`, but not `/xyz/acb/123`.
|
|
166
|
+
|
|
167
|
+
### nocomment
|
|
168
|
+
|
|
169
|
+
Suppress the behavior of treating `#` at the start of a pattern as a
|
|
170
|
+
comment.
|
|
171
|
+
|
|
172
|
+
### nonegate
|
|
173
|
+
|
|
174
|
+
Suppress the behavior of treating a leading `!` character as negation.
|
|
175
|
+
|
|
176
|
+
### flipNegate
|
|
177
|
+
|
|
178
|
+
Returns from negate expressions the same as if they were not negated.
|
|
179
|
+
(Ie, true on a hit, false on a miss.)
|
|
180
|
+
|
|
181
|
+
|
|
182
|
+
## Comparisons to other fnmatch/glob implementations
|
|
183
|
+
|
|
184
|
+
While strict compliance with the existing standards is a worthwhile
|
|
185
|
+
goal, some discrepancies exist between minimatch and other
|
|
186
|
+
implementations, and are intentional.
|
|
187
|
+
|
|
188
|
+
If the pattern starts with a `!` character, then it is negated. Set the
|
|
189
|
+
`nonegate` flag to suppress this behavior, and treat leading `!`
|
|
190
|
+
characters normally. This is perhaps relevant if you wish to start the
|
|
191
|
+
pattern with a negative extglob pattern like `!(a|B)`. Multiple `!`
|
|
192
|
+
characters at the start of a pattern will negate the pattern multiple
|
|
193
|
+
times.
|
|
194
|
+
|
|
195
|
+
If a pattern starts with `#`, then it is treated as a comment, and
|
|
196
|
+
will not match anything. Use `\#` to match a literal `#` at the
|
|
197
|
+
start of a line, or set the `nocomment` flag to suppress this behavior.
|
|
198
|
+
|
|
199
|
+
The double-star character `**` is supported by default, unless the
|
|
200
|
+
`noglobstar` flag is set. This is supported in the manner of bsdglob
|
|
201
|
+
and bash 4.1, where `**` only has special significance if it is the only
|
|
202
|
+
thing in a path part. That is, `a/**/b` will match `a/x/y/b`, but
|
|
203
|
+
`a/**b` will not.
|
|
204
|
+
|
|
205
|
+
If an escaped pattern has no matches, and the `nonull` flag is set,
|
|
206
|
+
then minimatch.match returns the pattern as-provided, rather than
|
|
207
|
+
interpreting the character escapes. For example,
|
|
208
|
+
`minimatch.match([], "\\*a\\?")` will return `"\\*a\\?"` rather than
|
|
209
|
+
`"*a?"`. This is akin to setting the `nullglob` option in bash, except
|
|
210
|
+
that it does not resolve escaped pattern characters.
|
|
211
|
+
|
|
212
|
+
If brace expansion is not disabled, then it is performed before any
|
|
213
|
+
other interpretation of the glob pattern. Thus, a pattern like
|
|
214
|
+
`+(a|{b),c)}`, which would not be valid in bash or zsh, is expanded
|
|
215
|
+
**first** into the set of `+(a|b)` and `+(a|c)`, and those patterns are
|
|
216
|
+
checked for validity. Since those two are valid, matching proceeds.
|
package/browser.js
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
(function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){
|
|
1
|
+
(function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.minimatch = f()}})(function(){var define,module,exports;return (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){
|
|
2
2
|
module.exports = minimatch
|
|
3
3
|
minimatch.Minimatch = Minimatch
|
|
4
4
|
|
|
5
|
-
var
|
|
5
|
+
var path = { sep: '/' }
|
|
6
6
|
try {
|
|
7
|
-
|
|
7
|
+
path = require('path')
|
|
8
8
|
} catch (er) {}
|
|
9
9
|
|
|
10
10
|
var GLOBSTAR = minimatch.GLOBSTAR = Minimatch.GLOBSTAR = {}
|
|
@@ -113,8 +113,8 @@ function Minimatch (pattern, options) {
|
|
|
113
113
|
pattern = pattern.trim()
|
|
114
114
|
|
|
115
115
|
// windows support: need to use /, not \
|
|
116
|
-
if (sep !== '/') {
|
|
117
|
-
pattern = pattern.split(sep).join('/')
|
|
116
|
+
if (path.sep !== '/') {
|
|
117
|
+
pattern = pattern.split(path.sep).join('/')
|
|
118
118
|
}
|
|
119
119
|
|
|
120
120
|
this.options = options
|
|
@@ -273,6 +273,7 @@ function parse (pattern, isSub) {
|
|
|
273
273
|
var escaping = false
|
|
274
274
|
// ? => one single character
|
|
275
275
|
var patternListStack = []
|
|
276
|
+
var negativeLists = []
|
|
276
277
|
var plType
|
|
277
278
|
var stateChar
|
|
278
279
|
var inClass = false
|
|
@@ -373,9 +374,13 @@ function parse (pattern, isSub) {
|
|
|
373
374
|
}
|
|
374
375
|
|
|
375
376
|
plType = stateChar
|
|
376
|
-
patternListStack.push({
|
|
377
|
+
patternListStack.push({
|
|
378
|
+
type: plType,
|
|
379
|
+
start: i - 1,
|
|
380
|
+
reStart: re.length
|
|
381
|
+
})
|
|
377
382
|
// negation is (?:(?!js)[^/]*)
|
|
378
|
-
re += stateChar === '!' ? '(?:(?!' : '(?:'
|
|
383
|
+
re += stateChar === '!' ? '(?:(?!(?:' : '(?:'
|
|
379
384
|
this.debug('plType %j %j', stateChar, re)
|
|
380
385
|
stateChar = false
|
|
381
386
|
continue
|
|
@@ -389,12 +394,15 @@ function parse (pattern, isSub) {
|
|
|
389
394
|
clearStateChar()
|
|
390
395
|
hasMagic = true
|
|
391
396
|
re += ')'
|
|
392
|
-
|
|
397
|
+
var pl = patternListStack.pop()
|
|
398
|
+
plType = pl.type
|
|
393
399
|
// negation is (?:(?!js)[^/]*)
|
|
394
400
|
// The others are (?:<pattern>)<type>
|
|
395
401
|
switch (plType) {
|
|
396
402
|
case '!':
|
|
397
|
-
|
|
403
|
+
negativeLists.push(pl)
|
|
404
|
+
re += ')[^/]*?)'
|
|
405
|
+
pl.reEnd = re.length
|
|
398
406
|
break
|
|
399
407
|
case '?':
|
|
400
408
|
case '+':
|
|
@@ -508,7 +516,7 @@ function parse (pattern, isSub) {
|
|
|
508
516
|
// and escape any | chars that were passed through as-is for the regexp.
|
|
509
517
|
// Go through and escape them, taking care not to double-escape any
|
|
510
518
|
// | chars that were already escaped.
|
|
511
|
-
for (
|
|
519
|
+
for (pl = patternListStack.pop(); pl; pl = patternListStack.pop()) {
|
|
512
520
|
var tail = re.slice(pl.reStart + 3)
|
|
513
521
|
// maybe some even number of \, then maybe 1 \, followed by a |
|
|
514
522
|
tail = tail.replace(/((?:\\{2})*)(\\?)\|/g, function (_, $1, $2) {
|
|
@@ -551,12 +559,49 @@ function parse (pattern, isSub) {
|
|
|
551
559
|
case '(': addPatternStart = true
|
|
552
560
|
}
|
|
553
561
|
|
|
562
|
+
// Hack to work around lack of negative lookbehind in JS
|
|
563
|
+
// A pattern like: *.!(x).!(y|z) needs to ensure that a name
|
|
564
|
+
// like 'a.xyz.yz' doesn't match. So, the first negative
|
|
565
|
+
// lookahead, has to look ALL the way ahead, to the end of
|
|
566
|
+
// the pattern.
|
|
567
|
+
for (var n = negativeLists.length - 1; n > -1; n--) {
|
|
568
|
+
var nl = negativeLists[n]
|
|
569
|
+
|
|
570
|
+
var nlBefore = re.slice(0, nl.reStart)
|
|
571
|
+
var nlFirst = re.slice(nl.reStart, nl.reEnd - 8)
|
|
572
|
+
var nlLast = re.slice(nl.reEnd - 8, nl.reEnd)
|
|
573
|
+
var nlAfter = re.slice(nl.reEnd)
|
|
574
|
+
|
|
575
|
+
nlLast += nlAfter
|
|
576
|
+
|
|
577
|
+
// Handle nested stuff like *(*.js|!(*.json)), where open parens
|
|
578
|
+
// mean that we should *not* include the ) in the bit that is considered
|
|
579
|
+
// "after" the negated section.
|
|
580
|
+
var openParensBefore = nlBefore.split('(').length - 1
|
|
581
|
+
var cleanAfter = nlAfter
|
|
582
|
+
for (i = 0; i < openParensBefore; i++) {
|
|
583
|
+
cleanAfter = cleanAfter.replace(/\)[+*?]?/, '')
|
|
584
|
+
}
|
|
585
|
+
nlAfter = cleanAfter
|
|
586
|
+
|
|
587
|
+
var dollar = ''
|
|
588
|
+
if (nlAfter === '' && isSub !== SUBPARSE) {
|
|
589
|
+
dollar = '$'
|
|
590
|
+
}
|
|
591
|
+
var newRe = nlBefore + nlFirst + nlAfter + dollar + nlLast
|
|
592
|
+
re = newRe
|
|
593
|
+
}
|
|
594
|
+
|
|
554
595
|
// if the re is not "" at this point, then we need to make sure
|
|
555
596
|
// it doesn't match against an empty path part.
|
|
556
597
|
// Otherwise a/* will match a/, which it should not.
|
|
557
|
-
if (re !== '' && hasMagic)
|
|
598
|
+
if (re !== '' && hasMagic) {
|
|
599
|
+
re = '(?=.)' + re
|
|
600
|
+
}
|
|
558
601
|
|
|
559
|
-
if (addPatternStart)
|
|
602
|
+
if (addPatternStart) {
|
|
603
|
+
re = patternStart + re
|
|
604
|
+
}
|
|
560
605
|
|
|
561
606
|
// parsing just a piece of a larger pattern.
|
|
562
607
|
if (isSub === SUBPARSE) {
|
|
@@ -654,8 +699,8 @@ function match (f, partial) {
|
|
|
654
699
|
var options = this.options
|
|
655
700
|
|
|
656
701
|
// windows: need to use /, not \
|
|
657
|
-
if (sep !== '/') {
|
|
658
|
-
f = f.split(sep).join('/')
|
|
702
|
+
if (path.sep !== '/') {
|
|
703
|
+
f = f.split(path.sep).join('/')
|
|
659
704
|
}
|
|
660
705
|
|
|
661
706
|
// treat the test path as a set of pathparts.
|
|
@@ -1110,4 +1155,5 @@ module.exports = function (xs, fn) {
|
|
|
1110
1155
|
return res;
|
|
1111
1156
|
};
|
|
1112
1157
|
|
|
1113
|
-
},{}]},{},[1])
|
|
1158
|
+
},{}]},{},[1])(1)
|
|
1159
|
+
});
|
package/minimatch.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
module.exports = minimatch
|
|
2
2
|
minimatch.Minimatch = Minimatch
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var path = { sep: '/' }
|
|
5
5
|
try {
|
|
6
|
-
|
|
6
|
+
path = require('path')
|
|
7
7
|
} catch (er) {}
|
|
8
8
|
|
|
9
9
|
var GLOBSTAR = minimatch.GLOBSTAR = Minimatch.GLOBSTAR = {}
|
|
@@ -112,8 +112,8 @@ function Minimatch (pattern, options) {
|
|
|
112
112
|
pattern = pattern.trim()
|
|
113
113
|
|
|
114
114
|
// windows support: need to use /, not \
|
|
115
|
-
if (sep !== '/') {
|
|
116
|
-
pattern = pattern.split(sep).join('/')
|
|
115
|
+
if (path.sep !== '/') {
|
|
116
|
+
pattern = pattern.split(path.sep).join('/')
|
|
117
117
|
}
|
|
118
118
|
|
|
119
119
|
this.options = options
|
|
@@ -272,6 +272,7 @@ function parse (pattern, isSub) {
|
|
|
272
272
|
var escaping = false
|
|
273
273
|
// ? => one single character
|
|
274
274
|
var patternListStack = []
|
|
275
|
+
var negativeLists = []
|
|
275
276
|
var plType
|
|
276
277
|
var stateChar
|
|
277
278
|
var inClass = false
|
|
@@ -372,9 +373,13 @@ function parse (pattern, isSub) {
|
|
|
372
373
|
}
|
|
373
374
|
|
|
374
375
|
plType = stateChar
|
|
375
|
-
patternListStack.push({
|
|
376
|
+
patternListStack.push({
|
|
377
|
+
type: plType,
|
|
378
|
+
start: i - 1,
|
|
379
|
+
reStart: re.length
|
|
380
|
+
})
|
|
376
381
|
// negation is (?:(?!js)[^/]*)
|
|
377
|
-
re += stateChar === '!' ? '(?:(?!' : '(?:'
|
|
382
|
+
re += stateChar === '!' ? '(?:(?!(?:' : '(?:'
|
|
378
383
|
this.debug('plType %j %j', stateChar, re)
|
|
379
384
|
stateChar = false
|
|
380
385
|
continue
|
|
@@ -388,12 +393,15 @@ function parse (pattern, isSub) {
|
|
|
388
393
|
clearStateChar()
|
|
389
394
|
hasMagic = true
|
|
390
395
|
re += ')'
|
|
391
|
-
|
|
396
|
+
var pl = patternListStack.pop()
|
|
397
|
+
plType = pl.type
|
|
392
398
|
// negation is (?:(?!js)[^/]*)
|
|
393
399
|
// The others are (?:<pattern>)<type>
|
|
394
400
|
switch (plType) {
|
|
395
401
|
case '!':
|
|
396
|
-
|
|
402
|
+
negativeLists.push(pl)
|
|
403
|
+
re += ')[^/]*?)'
|
|
404
|
+
pl.reEnd = re.length
|
|
397
405
|
break
|
|
398
406
|
case '?':
|
|
399
407
|
case '+':
|
|
@@ -507,7 +515,7 @@ function parse (pattern, isSub) {
|
|
|
507
515
|
// and escape any | chars that were passed through as-is for the regexp.
|
|
508
516
|
// Go through and escape them, taking care not to double-escape any
|
|
509
517
|
// | chars that were already escaped.
|
|
510
|
-
for (
|
|
518
|
+
for (pl = patternListStack.pop(); pl; pl = patternListStack.pop()) {
|
|
511
519
|
var tail = re.slice(pl.reStart + 3)
|
|
512
520
|
// maybe some even number of \, then maybe 1 \, followed by a |
|
|
513
521
|
tail = tail.replace(/((?:\\{2})*)(\\?)\|/g, function (_, $1, $2) {
|
|
@@ -550,12 +558,49 @@ function parse (pattern, isSub) {
|
|
|
550
558
|
case '(': addPatternStart = true
|
|
551
559
|
}
|
|
552
560
|
|
|
561
|
+
// Hack to work around lack of negative lookbehind in JS
|
|
562
|
+
// A pattern like: *.!(x).!(y|z) needs to ensure that a name
|
|
563
|
+
// like 'a.xyz.yz' doesn't match. So, the first negative
|
|
564
|
+
// lookahead, has to look ALL the way ahead, to the end of
|
|
565
|
+
// the pattern.
|
|
566
|
+
for (var n = negativeLists.length - 1; n > -1; n--) {
|
|
567
|
+
var nl = negativeLists[n]
|
|
568
|
+
|
|
569
|
+
var nlBefore = re.slice(0, nl.reStart)
|
|
570
|
+
var nlFirst = re.slice(nl.reStart, nl.reEnd - 8)
|
|
571
|
+
var nlLast = re.slice(nl.reEnd - 8, nl.reEnd)
|
|
572
|
+
var nlAfter = re.slice(nl.reEnd)
|
|
573
|
+
|
|
574
|
+
nlLast += nlAfter
|
|
575
|
+
|
|
576
|
+
// Handle nested stuff like *(*.js|!(*.json)), where open parens
|
|
577
|
+
// mean that we should *not* include the ) in the bit that is considered
|
|
578
|
+
// "after" the negated section.
|
|
579
|
+
var openParensBefore = nlBefore.split('(').length - 1
|
|
580
|
+
var cleanAfter = nlAfter
|
|
581
|
+
for (i = 0; i < openParensBefore; i++) {
|
|
582
|
+
cleanAfter = cleanAfter.replace(/\)[+*?]?/, '')
|
|
583
|
+
}
|
|
584
|
+
nlAfter = cleanAfter
|
|
585
|
+
|
|
586
|
+
var dollar = ''
|
|
587
|
+
if (nlAfter === '' && isSub !== SUBPARSE) {
|
|
588
|
+
dollar = '$'
|
|
589
|
+
}
|
|
590
|
+
var newRe = nlBefore + nlFirst + nlAfter + dollar + nlLast
|
|
591
|
+
re = newRe
|
|
592
|
+
}
|
|
593
|
+
|
|
553
594
|
// if the re is not "" at this point, then we need to make sure
|
|
554
595
|
// it doesn't match against an empty path part.
|
|
555
596
|
// Otherwise a/* will match a/, which it should not.
|
|
556
|
-
if (re !== '' && hasMagic)
|
|
597
|
+
if (re !== '' && hasMagic) {
|
|
598
|
+
re = '(?=.)' + re
|
|
599
|
+
}
|
|
557
600
|
|
|
558
|
-
if (addPatternStart)
|
|
601
|
+
if (addPatternStart) {
|
|
602
|
+
re = patternStart + re
|
|
603
|
+
}
|
|
559
604
|
|
|
560
605
|
// parsing just a piece of a larger pattern.
|
|
561
606
|
if (isSub === SUBPARSE) {
|
|
@@ -653,8 +698,8 @@ function match (f, partial) {
|
|
|
653
698
|
var options = this.options
|
|
654
699
|
|
|
655
700
|
// windows: need to use /, not \
|
|
656
|
-
if (sep !== '/') {
|
|
657
|
-
f = f.split(sep).join('/')
|
|
701
|
+
if (path.sep !== '/') {
|
|
702
|
+
f = f.split(path.sep).join('/')
|
|
658
703
|
}
|
|
659
704
|
|
|
660
705
|
// treat the test path as a set of pathparts.
|
package/package.json
CHANGED
|
@@ -2,16 +2,16 @@
|
|
|
2
2
|
"author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me)",
|
|
3
3
|
"name": "minimatch",
|
|
4
4
|
"description": "a glob matcher in javascript",
|
|
5
|
-
"version": "2.0.
|
|
5
|
+
"version": "2.0.10",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
8
8
|
"url": "git://github.com/isaacs/minimatch.git"
|
|
9
9
|
},
|
|
10
10
|
"main": "minimatch.js",
|
|
11
11
|
"scripts": {
|
|
12
|
-
"
|
|
12
|
+
"posttest": "standard minimatch.js test/*.js",
|
|
13
13
|
"test": "tap test/*.js",
|
|
14
|
-
"prepublish": "browserify -o browser.js -e minimatch.js --bare"
|
|
14
|
+
"prepublish": "browserify -o browser.js -e minimatch.js -s minimatch --bare"
|
|
15
15
|
},
|
|
16
16
|
"engines": {
|
|
17
17
|
"node": "*"
|
|
@@ -22,12 +22,9 @@
|
|
|
22
22
|
"devDependencies": {
|
|
23
23
|
"browserify": "^9.0.3",
|
|
24
24
|
"standard": "^3.7.2",
|
|
25
|
-
"tap": ""
|
|
26
|
-
},
|
|
27
|
-
"license": {
|
|
28
|
-
"type": "MIT",
|
|
29
|
-
"url": "http://github.com/isaacs/minimatch/raw/master/LICENSE"
|
|
25
|
+
"tap": "^1.2.0"
|
|
30
26
|
},
|
|
27
|
+
"license": "ISC",
|
|
31
28
|
"files": [
|
|
32
29
|
"minimatch.js",
|
|
33
30
|
"browser.js"
|